I'm developing a client side music player and am looking for a way to save playlists complete with the mp3 data.
localStorage The 5mb limit for localStorage rules that option out. I'm wondering what other options there are.
DataURIs I've read about dataURIs e.g. Is there any way to specify a suggested filename when using data: URI? and Cross-browser Save As .txt but not suggesting a default filename and particularly lack of IE support are dealbreakers.
IndexedDB HTML5 indexedDB and persistence lifetime suggests that IndexedDB is not an option for persistent storage.
Are there options I am missing? I hope so!
Thanks, Andrew