Save an audio recorded file (iPhone)

You must Login before you can answer or comment on any questions.

Hi guys,

Going over the kitchen sink, I saw the audio recording example. My question is: is there a way to save the recorded audio to a directory which is reachable for the user? (similar to what we can do with a recorded video, which is saved to the gallery directory).

Thanks in advance, Alon

— asked 2 years ago by AMR AMR
0 Comments

2 Answers

I am also facing the same issue. Any updates from side? I want to share the recorded audio file.

Yes, you can do this // Save the data to file. var file = Titanium.Filesystem.getFile( 'your path', 'audio_parking.wav' );

// Write the data.
file.write( recordData );

Your Answer

Think you can help? Login to answer this question!