*** NickSB2 has quit IRC | 01:48 | |
*** digidog_ has joined #lv2 | 02:29 | |
*** digidog has quit IRC | 02:31 | |
*** artfwo has quit IRC | 02:44 | |
*** deva has joined #lv2 | 05:36 | |
*** frinknet has joined #lv2 | 07:03 | |
*** frinknet has quit IRC | 07:24 | |
*** frinknet has joined #lv2 | 07:36 | |
*** edogawa has joined #lv2 | 07:38 | |
*** aelc665 has joined #lv2 | 07:49 | |
*** edogawa has quit IRC | 07:52 | |
*** edogawa has joined #lv2 | 07:55 | |
*** ventosus has joined #lv2 | 08:11 | |
*** sigma6 has joined #lv2 | 08:42 | |
*** falktx|work has joined #lv2 | 08:55 | |
*** ColaEuphoria has joined #lv2 | 08:56 | |
*** brummer has joined #lv2 | 10:17 | |
brummer | hi all | 10:18 |
---|---|---|
brummer | is there a way to expose a label to the generic host UI? | 10:18 |
brummer | other then "fake" a port? | 10:19 |
falktx|work | you mean a scalepoint? | 10:33 |
rgareus | brummer: every port can have a description (in ardour uses as tooltip) and the plugin itself documentation (displayed as help text) both are rdfs:comments | 10:34 |
brummer | <rgareus> thanks, works. That's what I'm looking for | 10:42 |
brummer | <falktx|work> No, a hint for the user, in a no-gui plugin. | 10:44 |
rgareus | rdfs:comment "Example" for multiple lines use 3 quotes | 10:44 |
rgareus | rdfs:comment """ some test <line break here> more test """ | 10:44 |
rgareus | and a wish: https://github.com/falkTX/Carla/issues/156 | 10:47 |
brummer | a well, I just need a single line so a single quote is enough. I've first used triple quotes and wonder why the tooltip is so big(hight) | 10:48 |
*** BigstevE has joined #lv2 | 11:02 | |
brummer | <rgareus> how do you do it in multiple languages? | 11:03 |
BigstevE | Hi guys, so I've got a ladspa question that I'm looking for advice on. Since theres no ladspa channel I'd thought id ask here. | 11:06 |
BigstevE | It's simple really. I use audacious as my music player and would like to enable saving presets of the ladspa plugin host in that program. | 11:08 |
BigstevE | I know LASH (linux audio session manager) could do such things, but am not sure how to go about interfacing it with audacious. | 11:08 |
BigstevE | Has anyone ever used a shell script that reads from one's .config/audacious/config file, copies (concatenates) the [ladspa] section to a file in the same directory. | 11:09 |
BigstevE | sorry if it's off topic. | 11:09 |
BigstevE | hen later on, copies ( or cat > ) *that* file back into, the running config file, overwriting the [ladspa] section, and thus creating, and changing presets? | 11:09 |
ventosus | brummer: rdfs:comment "comment" , "Kommentar"@de, "Commentario"@it ; | 11:15 |
*** NickSB2 has joined #lv2 | 11:20 | |
brummer | <ventosus> thanks, that works. | 11:25 |
*** BigstevE has left #lv2 | 11:28 | |
brummer | thanks so far, issue solved. This is the plug were I need the tooltip in multiple languages for: http://librazik.tuxfamily.org/doc/logiciels/screcord.lv2 | 11:37 |
rgareus | en francaise? | 11:45 |
rgareus | brummer: Harry wrote a LV2 plugin to record, and IIRC the MOD team also has something like this. | 11:46 |
rgareus | but cool. this is the first one where I can actually read the source and compile it ! | 11:47 |
rgareus | mais il n'y a pas de lien vers la git repo. | 11:51 |
rgareus | https://github.com/brummer10/screcord.lv2 | 11:52 |
rgareus | brummer: did you consider using the worker thread (instead of a custom thread)? the current design will fall apart when freewheeling. | 11:54 |
rgareus | hardcoding a fifo priority for the disk i/o thread is also questionable. | 11:55 |
rgareus | particularly 1/5 of max. there are some people who run jack with priority 4 or 5 -- that has caused ardour to fail because threads created with jack_client_create_thread() use jack's priority - 5 | 11:58 |
rgareus | recent qjackctl does not allow 5 or lower anymore. | 11:58 |
brummer | the plug is now 2 years old, maybe it needs a bit refresh | 12:02 |
brummer | if max prio is lower then 5, the prio is set to zero | 12:04 |
brummer | and it isn't hardcoding, it just use 1/5 of the max allowed | 12:04 |
rgareus | using the LV2 worker will not only be cleaner but also reduce the code-size. | 12:07 |
rgareus | the semaphores and all the thread init stuff can go away. basically just call lv2.work.schedule to kick the disk-write function | 12:08 |
*** rncbc_jolla has joined #lv2 | 12:26 | |
*** brummer has quit IRC | 12:42 | |
*** brummer has joined #lv2 | 12:48 | |
*** artfwo has joined #lv2 | 12:52 | |
brummer | <rgareus> maybe, but this way the plug is completely self-contained, it didn't relay on any host feature. | 12:58 |
brummer | also, I use this plug in guitarix, which didn't support the worker interface | 13:02 |
rgareus | didn't or does not ? | 13:03 |
brummer | does not, no feature support at all in guitarix. | 13:08 |
*** ocbtec has joined #lv2 | 13:13 | |
*** rncbc_jolla has quit IRC | 13:50 | |
*** rncbc_jolla has joined #lv2 | 13:50 | |
*** ocbtec has quit IRC | 13:57 | |
*** rncbc_jolla has quit IRC | 13:57 | |
*** rncbc_jolla has joined #lv2 | 13:58 | |
*** brummer has quit IRC | 14:14 | |
*** son0p has quit IRC | 14:20 | |
*** rncbc_jolla has quit IRC | 14:21 | |
*** son0p has joined #lv2 | 14:23 | |
*** drobilla has joined #lv2 | 14:36 | |
*** rncbc_jolla has joined #lv2 | 14:55 | |
*** ocbtec has joined #lv2 | 14:55 | |
*** rncbc_jolla has quit IRC | 15:01 | |
*** falktx|work has quit IRC | 15:14 | |
*** falktx|work has joined #lv2 | 15:14 | |
*** falktx|work has quit IRC | 15:32 | |
*** falktx|work has joined #lv2 | 15:33 | |
*** ssj71 has quit IRC | 15:39 | |
*** edogawa has quit IRC | 15:43 | |
*** rncbc has joined #lv2 | 15:44 | |
*** digidog_ has quit IRC | 15:47 | |
*** tytel has joined #lv2 | 15:50 | |
*** jbitdrop has joined #lv2 | 16:04 | |
*** digidog has joined #lv2 | 16:05 | |
*** falktx|work has quit IRC | 16:17 | |
*** falktx|work has joined #lv2 | 16:17 | |
*** sigma6 has quit IRC | 17:09 | |
*** brummer has joined #lv2 | 17:30 | |
*** ssj71 has joined #lv2 | 17:57 | |
*** brummer has quit IRC | 18:39 | |
*** falktx|work has quit IRC | 18:45 | |
*** ocbtec has quit IRC | 19:03 | |
*** deva has quit IRC | 19:18 | |
*** edogawa has joined #lv2 | 20:16 | |
*** ventosus has left #lv2 | 20:24 | |
*** dsheeler has quit IRC | 20:40 | |
*** edogawa has quit IRC | 20:50 | |
*** edogawa has joined #lv2 | 20:53 | |
*** drobilla has quit IRC | 21:22 | |
*** drobilla has joined #lv2 | 21:22 | |
*** rncbc has quit IRC | 22:14 | |
*** aelc665 has quit IRC | 22:25 | |
*** ricardocrudo has joined #lv2 | 22:42 | |
*** ricardocrudo has quit IRC | 23:01 | |
*** jbitdrop has quit IRC | 23:31 | |
*** edogawa has quit IRC | 23:52 |
Generated by irclog2html.py 2.13.0 by Marius Gedminas - find it at mg.pov.lt!