Android Question About AudioRecordApp

hanyelmehy

Active Member
Licensed User
Longtime User
i use AudioRecordApp to record audio the problem is ,when try to record new audio file with same old name ,recorder refuse to save it with message (file already exist) ,even when delete file used in Record method
i think that recorder save the audio file in two places (in its own path ,in lib record method path) ,so i need to get file path (recorder own path) to delete it ,any ideas how to do that
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
AudioRecordApp already tries to delete the temporary file based on the value returned from the audio recording app. It actually goes another step and looks for new 3gpp files in the root folder and delete them as well.

Maybe the audio recording app on your device locks the file.

You can try to use AudioStreamer instead. It is quite simple to use and will give you more control over the process.
 
Upvote 0
Top