Hi,
I saw the iphone example for recording to disk, but i’d wanted to know if it’s possible to use startRecording / stopRecording with a system created with FMOD_OUTPUTTYPE_WAVWRITER.
IE : write directly to a wav like in the recordtodisk example instead of getting a FMOD::Sound.
Regards
- kenji.21 asked 9 years ago
- You must login to post comments
Unfortunately no it’s not possible to use wavewriter with recording because of how our output mode architecture is built. You are either using "wave writer output mode" (which provides no platform specific interface with hardware) or "core audio output mode" (our iphone specific implementation to interface with the hardware).
The only way to get the recorded sound to disk is by following the recordtodisk example we ship.
- Mathew Block answered 9 years ago
- How can I specify the output file via extradriverdata?
- Simply pass the file path const char * into extradriver data. If you are on iOS like OP make sure the destination path is writable (Document directory for instance).
- You must login to post comments
Please login first to submit.