Skip to content

Instantly share code, notes, and snippets.

@ALOUT
Created June 1, 2014 09:25
Show Gist options
  • Save ALOUT/d9bdadf1c85c757a77bb to your computer and use it in GitHub Desktop.
Save ALOUT/d9bdadf1c85c757a77bb to your computer and use it in GitHub Desktop.
WAV録音テンプレート
s = Server.default;
s.waitForBoot{
s.recChannels_(2);
s.recHeaderFormat_('WAV');
s.recSampleFormat_('float');
s.prepareForRecord("/Users/kinksaiz/Desktop/multi.wav");
s.sync;
s.record;
};
s.stopRecording;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment