Hi, I'm building an app that allows users to record an audio sample, save the data, then in subsequent sessions retrieve the data and play it back.
Following the Voice Recorder example, I think I've managed to get the binary data into local storage (I can see it as an item in the Local Storage object in debug), but I don't know how to extract it into a suitable format for playing.
These are the steps taken to save the data:
It shows in the local storage as:
To retrieve the data I've got as far as:
...but I'm unsure where to go next. Is saving the files to local storage even the best way to do this or should I be saving them directly as audio files to a directory (as in the Voice Recorder example) and then retrieving them from there? Note that I would like the user to be able to retrieve multiple saved samples for use simultaneously, if that makes any difference to the best method.
Any help greatly appreciated.