Filters#
Filters
#
Filters(
*,
volume: float | None = None,
equalizer: typing.Sequence[filters_.Equalizer] = [],
karaoke: filters_.Karaoke | None = None,
timescale: filters_.Timescale | None = None,
tremolo: filters_.Tremolo | None = None,
vibrato: filters_.Vibrato | None = None,
rotation: filters_.Rotation | None = None,
distortion: filters_.Distortion | None = None,
channel_mix: filters_.ChannelMix | None = None,
low_pass: filters_.LowPass | None = None,
plugin_filters: typing.Mapping[str, typing.Any] = {}
)
Filters.
An empty filter object.
PARAMETER | DESCRIPTION |
---|---|
volume |
Volume of the player.
TYPE:
|
equalizer |
A sequence of equalizer objects. |
karaoke |
A karaoke object. |
timescale |
A timescale object. |
tremolo |
A tremolo object. |
vibrato |
A vibrato object. |
rotation |
A rotation object. |
distortion |
A distortion object.
TYPE:
|
channel_mix |
A channel mix object.
TYPE:
|
low_pass |
A low pass object. |
plugin_filters |
A dict of plugin filters. |
equalizer
property
#
Equalizer.
15 bands with different gains.
karaoke
property
#
karaoke: Karaoke | None
Karaoke.
Eliminates part of a band, usually targeting vocals.
tremolo
property
#
tremolo: Tremolo | None
Tremolo.
Creates a shuddering effect, where the volume quickly oscillates.
vibrato
property
#
vibrato: Vibrato | None
Vibrato.
Creates a shuddering effect, where the pitch quickly oscillates.
rotation
property
#
rotation: Rotation | None
Rotation.
Rotates the audio around the stereo channels/user headphones (aka Audio Panning).
channel_mix
property
#
channel_mix: ChannelMix | None
Channel Mix.
Mixes both channels (left and right).
plugin_filters
property
#
Plugin Filters.
Filter plugin configurations.
from_filter
classmethod
#
set_volume
#
Set Volume.
Set the volume of the filter.
PARAMETER | DESCRIPTION |
---|---|
volume |
The volume of the player. (Must be greater than 0.)
TYPE:
|
add_equalizer
#
remove_equalizer
#
clear_equalizer
#
clear_equalizer() -> Filters
Clear Equalizer.
Clear all equalizer bands from the filter.
set_karaoke
#
set_karaoke(
*,
level: hikari.UndefinedNoneOr[float] = hikari.UNDEFINED,
mono_level: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED,
filter_band: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED,
filter_width: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED
) -> Filters
Set Karaoke.
Set karaoke values.
PARAMETER | DESCRIPTION |
---|---|
level |
The level (0 to 1.0 where 0.0 is no effect and 1.0 is full effect).
TYPE:
|
mono_level |
The mono level (0 to 1.0 where 0.0 is no effect and 1.0 is full effect).
TYPE:
|
filter_band |
The filter band (in Hz).
TYPE:
|
filter_width |
The filter width.
TYPE:
|
set_timescale
#
set_timescale(
*,
speed: hikari.UndefinedNoneOr[float] = hikari.UNDEFINED,
pitch: hikari.UndefinedNoneOr[float] = hikari.UNDEFINED,
rate: hikari.UndefinedNoneOr[float] = hikari.UNDEFINED
) -> Filters
Set Timescale.
Set timescale values.
PARAMETER | DESCRIPTION |
---|---|
speed |
The playback speed 0.0 ≤ x.
TYPE:
|
pitch |
The pitch 0.0 ≤ x.
TYPE:
|
rate |
The rate 0.0 ≤ x.
TYPE:
|
clear_timescale
#
clear_timescale() -> Filters
Clear Timescale.
Clear all timescale values from the filter.
set_tremolo
#
set_tremolo(
*,
frequency: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED,
depth: hikari.UndefinedNoneOr[float] = hikari.UNDEFINED
) -> Filters
Set Tremolo.
Set tremolo values.
PARAMETER | DESCRIPTION |
---|---|
frequency |
The frequency 0.0 < x.
TYPE:
|
depth |
The tremolo depth 0.0 < x ≤ 1.0.
TYPE:
|
set_vibrato
#
set_vibrato(
*,
frequency: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED,
depth: hikari.UndefinedNoneOr[float] = hikari.UNDEFINED
) -> Filters
Set Vibrato.
Set vibrato values.
PARAMETER | DESCRIPTION |
---|---|
frequency |
The frequency 0.0 < x ≤ 14.0.
TYPE:
|
depth |
The vibrato depth 0.0 < x ≤ 1.0.
TYPE:
|
set_rotation
#
set_rotation(
*,
rotation_hz: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED
) -> Filters
Set Rotation.
Set rotation values.
PARAMETER | DESCRIPTION |
---|---|
rotation_hz |
The frequency of the audio rotating around the listener in Hz.
TYPE:
|
clear_rotation
#
clear_rotation() -> Filters
Clear Rotation.
Clear all rotation values from the filter.
set_distortion
#
set_distortion(
*,
sin_offset: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED,
sin_scale: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED,
cos_offset: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED,
cos_scale: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED,
tan_offset: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED,
tan_scale: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED,
offset: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED,
scale: hikari.UndefinedNoneOr[float] = hikari.UNDEFINED
) -> Filters
Set Distortion.
Set distortion values.
PARAMETER | DESCRIPTION |
---|---|
sin_offset |
The sin offset.
TYPE:
|
sin_scale |
The sin scale.
TYPE:
|
cos_offset |
The cos offset.
TYPE:
|
cos_scale |
The cos scale.
TYPE:
|
tan_offset |
The tan offset.
TYPE:
|
tan_scale |
The tan scale.
TYPE:
|
offset |
The offset.
TYPE:
|
scale |
The scale.
TYPE:
|
clear_distortion
#
clear_distortion() -> Filters
Clear Distortion.
Clear all distortion values from the filter.
set_channel_mix
#
set_channel_mix(
*,
left_to_left: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED,
left_to_right: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED,
right_to_left: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED,
right_to_right: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED
) -> Filters
Set Channel Mix.
Set tremolo values.
PARAMETER | DESCRIPTION |
---|---|
left_to_left |
The left to left channel mix factor (0.0 ≤ x ≤ 1.0).
TYPE:
|
left_to_right |
The left to right channel mix factor (0.0 ≤ x ≤ 1.0).
TYPE:
|
right_to_left |
The right to left channel mix factor (0.0 ≤ x ≤ 1.0).
TYPE:
|
right_to_right |
The right to right channel mix factor (0.0 ≤ x ≤ 1.0).
TYPE:
|
clear_channel_mix
#
clear_channel_mix() -> Filters
Clear Channel Mix.
Clear all channel mix values from the filter.
set_low_pass
#
set_low_pass(
*,
smoothing: hikari.UndefinedNoneOr[
float
] = hikari.UNDEFINED
) -> Filters
Set Low Pass.
Set low pass values.
PARAMETER | DESCRIPTION |
---|---|
smoothing |
The smoothing factor (1.0 < x).
TYPE:
|