Re-direct output to file on OS X?
Hi guys Using ChucK on OS X, is there some easy way to re-direct its audio output to a file (for analysis)? Thanks, Arve
Arve Knudsen
Using ChucK on OS X, is there some easy way to re-direct its audio output to a file (for analysis)?
Inside your ChucK script, replace => dac; with => WvOut w => blackhole; see e.g. http://chuck.cs.princeton.edu/doc/examples/basic/rec.ck Or use JackOSX http://www.jackosx.com or Soundflower https://github.com/Cycling74/Soundflower as your audio device and use its routing capabilities to write out to a file. michael
Thank you!
Arve
On Tue, May 6, 2014 at 5:57 PM, Michael Heuer
Arve Knudsen
wrote: Using ChucK on OS X, is there some easy way to re-direct its audio output to a file (for analysis)?
Inside your ChucK script, replace => dac; with => WvOut w => blackhole; see e.g.
http://chuck.cs.princeton.edu/doc/examples/basic/rec.ck
Or use JackOSX
or Soundflower
https://github.com/Cycling74/Soundflower
as your audio device and use its routing capabilities to write out to a file.
michael _______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users
On Tue, May 6, 2014 at 8:57 AM, Michael Heuer
Arve Knudsen
wrote: Using ChucK on OS X, is there some easy way to re-direct its audio output to a file (for analysis)?
Inside your ChucK script, replace => dac; with => WvOut w => blackhole; see e.g.
Note that in that example (rec.ck), they redirect dac itself to WvOut, which is probably easier than replacing every "=> dac" with "=> WvOut w" because you just need to do it once at the beginning of your script. -- Tom Lieber http://AllTom.com/ http://infinite-sketchpad.com/
participants (3)
-
Arve Knudsen
-
Michael Heuer
-
Tom Lieber