Created
June 1, 2014 09:25
-
-
Save ALOUT/d9bdadf1c85c757a77bb to your computer and use it in GitHub Desktop.
WAV録音テンプレート
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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