renoise.AudioDevice
Audio DSP device in tracks or sample device chains.
- Properties
- name :
string
- short_name :
string
- display_name :
string
- display_name_observable :
renoise.Document.Observable
- is_active :
boolean
- is_active_observable :
renoise.Document.Observable
- is_maximized :
boolean
- is_maximized_observable :
renoise.Document.Observable
- active_preset :
integer
- active_preset_observable :
renoise.Document.Observable
- active_preset_data :
string
- presets :
string
[] - is_active_parameter :
renoise.DeviceParameter
- parameters :
renoise.DeviceParameter
[] - external_editor_available :
boolean
- external_editor_visible :
boolean
- device_path :
string
- name :
- Functions
Properties
name : string
READ-ONLY
short_name : string
READ-ONLY
display_name : string
Configurable device display name. When empty
name
is displayed.
display_name_observable : renoise.Document.Observable
Track changes to document properties or general states by attaching listener functions to it.
is_active : boolean
!active = bypassed
is_active_observable : renoise.Document.Observable
Track changes to document properties or general states by attaching listener functions to it.
is_maximized : boolean
Maximize state in DSP chain.
is_maximized_observable : renoise.Document.Observable
Track changes to document properties or general states by attaching listener functions to it.
active_preset : integer
0 when none is active or available
active_preset_observable : renoise.Document.Observable
Track changes to document properties or general states by attaching listener functions to it.
active_preset_data : string
raw serialized data in XML format of the active preset
presets : string
[]
READ-ONLY preset names
is_active_parameter : renoise.DeviceParameter
READ-ONLY
parameters : renoise.DeviceParameter
[]
READ-ONLY
external_editor_available : boolean
READ-ONLY Returns whether or not the device provides its own custom GUI (only available for some plugin devices)
external_editor_visible : boolean
true to show the editor, false to close it
device_path : string
READ-ONLY Returns a string that uniquely identifies the device, from
available_devices
. The string can be passed into:renoise.song().tracks[]:insert_device_at()
Functions
preset(self, index : integer
)
->
preset_name : string
Access to a single preset name by index. Use properties 'presets' to iterate over all presets and to query the presets count. comment
parameter(self, index : integer
)
Access to a single parameter by index. Use properties 'parameters' to iterate over all parameters and to query the parameter count.