This website works better with JavaScript.
Home
Explore
Help
Sign In
pete
/
radio
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1
Wiki
Activity
Browse Source
Can get sine wave from supercollider
tags/kitchen
Pete Shadbolt
3 years ago
parent
4afa6985ff
commit
2340e94828
3 changed files
with
8 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
README.md
+1
-1
osc.scd
+4
-0
sine.scd
+ 3
- 0
README.md
View File
@@ -1 +1,4 @@
# Radio
`python radio.py`
`sclang sine.scd`
audio.sc → osc.scd
View File
@@ -1,4 +1,4 @@
thisProcess.openUDPPort(5005);
n = NetAddr.new("0.0.0.0", 5005)
o = OSCFunc({ arg msg, time, addr, recvPort; [msg, time, addr, recvPort].postln; }, '/block', n);
OSCFunc.trace(true);
OSCFunc.trace(true);
+ 4
- 0
sine.scd
View File
@@ -0,0 +1,4 @@
s = Server.local;
s.waitForBoot {
{ SinOsc.ar() }.play;
};
Write
Preview
Loading…
Cancel
Save