diff options
Diffstat (limited to 'maximilian_examples/21.Recording.cpp')
| -rw-r--r-- | maximilian_examples/21.Recording.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/maximilian_examples/21.Recording.cpp b/maximilian_examples/21.Recording.cpp index 82e0e68..27c9bca 100644 --- a/maximilian_examples/21.Recording.cpp +++ b/maximilian_examples/21.Recording.cpp @@ -19,9 +19,12 @@ void setup() { // Call setup here, make sure you do this so the recorder // knows where to write the file. Currently the recorder // will write the wav file to the directory that this file - // is in but you can pass any absolute file path in you'd - // like to. - recorder.setup("hey.wav"); + // is in if you use linux but with mac and windows I + // strongly reccomend putting an absolute file path to the + // directory you want to write to. Also, when in Windows, + // remember to do double '\' characters because they + // count as an escape which will nullify any path you write + recorder.setup("lovesong.wav"); // This must be called to start the asynchronous thread to // manage the recorder's internal memory |
