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
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!