-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstartup.scd
43 lines (42 loc) · 1.1 KB
/
startup.scd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
(
// codigo OSC para usar OBS con OSCdef -- este no lo uso
/*a = NetAddr.new("127.0.0.1",7777); //your osc port
~dirt.receiveAction = { |e|
if ( (e.at(\escena) != 0),
{ a.sendMsg("/scene", e.at(\escena)); }, {}
);
if ( (e.at(\grabarv) != 3),
{ a.sendMsg("/setRecording", e.at(\grabarv)); }, {}
);
if ( (e.at(\flashr90) != 3),
{ a.sendMsg("/flashRedoble90BPM/mediaRestart") }, {}
);
};*/
// codigo OSC para usar OBS con OSCdef, pues con ~dirt siempre envia todos los atributos, con OSCdef solo envía los que encuentra.
a = NetAddr.new("127.0.0.1",7777);
OSCdef(\tidalplay, {
arg msg;
// OBS basico
if ( (msg.matchItem('escena') ),
{
e = msg.indexOf(\escena) + 1;
a.sendMsg("/scene", msg[e]); }
);
if ( (msg.matchItem('grabarv') ),
{
v = msg.indexOf(\grabarv) + 1;
a.sendMsg("/setRecording", msg[v]); }
);
if ( (msg.matchItem('stream') ),
{
s = msg.indexOf(\stream) + 1;
a.sendMsg("/setStreaming", msg[s]); }
);
// OBS media
if ( (msg.matchItem('media') ),
{
f = msg.indexOf(\media) + 1;
a.sendMsg("/media" ++ msg[f] ++ "/mediaRestart"); }
);
}, '/dirt/play', n);
);