Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
pete
/
radio
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
1
Wiki
Actividad
Explorar el Código
Can get sine wave from supercollider
tags/kitchen
Pete Shadbolt
hace 3 años
padre
4afa6985ff
commit
2340e94828
Se han
modificado 3 ficheros
con
8 adiciones
y
1 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+3
-0
README.md
+1
-1
osc.scd
+4
-0
sine.scd
+ 3
- 0
README.md
Ver fichero
@@ -1 +1,4 @@
# Radio
`python radio.py`
`sclang sine.scd`
audio.sc → osc.scd
Ver fichero
@@ -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
Ver fichero
@@ -0,0 +1,4 @@
s = Server.local;
s.waitForBoot {
{ SinOsc.ar() }.play;
};
Escribir
Vista previa
Cargando…
Cancelar
Guardar