Lines Matching refs:ladspa
5 python ladspa-dbus.py <sinkname> [values]
7 The "sinkname" parameter is the name of the ladspa sink. The "values"
8 parameter is a comma-separated list of ladspa sink parameter values. A
13 python ladspa-dbus.py ladspa_1 10.0,default,4.0,0.6,default
16 to 10.0, the second to the default value (specified in the ladspa
26 # do some D-Bus stuff to get to the real ladspa property object
39 # object path to the ladspa sink
91 ladspa = get_ladspa_property_interface(sinkname)
94 oldarguments, olddefaults = ladspa.Get("org.PulseAudio.Ext.Ladspa1", "AlgorithmParameters")
103 ladspa.Set("org.PulseAudio.Ext.Ladspa1", "AlgorithmParameters", (dbus.Array(arguments), dbus.Array(defaults)))
106 newarguments, newdefaults = ladspa.Get("org.PulseAudio.Ext.Ladspa1", "AlgorithmParameters")
112 # print(str(ladspa.GetAll("org.PulseAudio.Ext.Ladspa1")))