- main
- new
midi
support (documentation: http://osc.ammd.net/user-guide/midi/)
- new
- ui
- new
/TABS id1 id2 etc
osc address to remotely enable tabs - remote editing through
/EXEC
command is now deprecated, use/EDIT
and/EDIT_SOFT
instead
- new
- bug fixes
push
widgets (andkeyboards
) not correctly synchronizing each other (with shared widget ids or between different clients)modal
: correct z-stacking with absolutely positionned widgets; proper rendering for inner widgets; disable parent tab's scrolling when opened; fix various style glitches;strip
: resize glitch when containing compact horizontal sliders
- tab links broken after activating traversing gestures
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
moved to https://github.com/jean-emmanuel/lua_scripts/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python3 | |
import liblo | |
import time | |
from signal import signal, SIGINT, SIGTERM | |
# voir Édition > Préférences > Surfaces de contrôle > Open Sound Control | |
# le port osc d'ardour (ardour_port) est indiqué après "Connection" | |
ardour_port = 3820 | |
# le port de notre script (local_port) n'a pas d'importance si |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ardour { | |
["type"] = "EditorHook", | |
name = "Automation to OSC" | |
} | |
function signals () | |
return LuaSignal.Set():add ({[LuaSignal.LuaTimerS] = true}) | |
end | |
function factory () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/sh | |
ffmpeg -i input -c:v libx264 -preset slow -profile:v high -crf 18 -coder 1 -pix_fmt yuv420p -movflags +faststart -g 30 -bf 2 -c:a aac -b:a 384k -profile:a aac_low output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": "", | |
"label": "Unnamed", | |
"widgets": [ | |
{ | |
"type": "fader", | |
"id": "test", | |
"linkId": "", | |
"label": "Fader", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"label": "Switcher / Crossfader", | |
"widgets": [ | |
{ | |
"type": "switcher", | |
"id": "switcher_1", | |
"label": "^sliders Switcher", | |
"left": "auto", | |
"top": "auto", |
Disabling chromium vsync seems to have a big positive impact on perceived perfomances (aka input lag) in Open Stage Control.
I'd like to verify that.
Having chromium v49+ installed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo ".dump" | sqlite3 old.sqlite | sqlite3 new.sqlite |
Desactiver le démarrage automatique de pulseaudio (pour un éssai temporaire, le tuer : killall pulseaudio -9
) :
Editer ~/.config/pulse/client.conf
ou /etc/pulse/client.conf
et changer autospawn = yes
en autospawn=no
(décommenter la ligne en supprimant le ;
si présent en début de ligne)