openAVproductions / openAV-Luppp

Luppp is a live performance tool, created by OpenAV productions.
http://openavproductions.com/luppp
GNU General Public License v3.0
258 stars 45 forks source link

how to load specific preferences (luppp.prfs) #90

Closed genesis66 closed 10 years ago

genesis66 commented 10 years ago

I am running archlinux. installed luppp via community package "luppp-git". the prfs file is in /home/username/.config/openAV/luppp/luppp.prfs I have changed : "resampleQuality": 2, "defaultControllers": [touchosc.ctlr]

the touchosc.ctlr exists in /home/username/.config/openAV/luppp/controllers/ but I got this message when launching luppp : [Luppp] loadPreferences:69: Preferences JSON not valid [Luppp] Gui:442: No preferences loaded, using defaults.

And of course, the "touchosc.ctlr" controller settings are not loaded. I surely miss something :) but I can't find any informations on the wiki on how to use this preference file. Some help needed, thanks.

harryhaaren commented 10 years ago

@genesis66 you need to change the line to this

"defaultControllers": ["touchosc.ctlr"]

Note the addded " around "touchosc.ctlr".

As an additional note, you can add multiple controllers there, like so:

"defaultControllers": ["touchosc.ctlr","footpedal.ctlr","arduino.ctlr"]

That should fix it, please mark as closed if it does :) -Harry

PS: The resample quality only applies to when you're running JACK at a samplerate that is different to the original session: it is not the resampling quality of the time stretch algorithm.

genesis66 commented 10 years ago

Cool, working with the quotes (") before and after the controller setup name. Thanks