My application (wrapped in PhoneGap) runs both online and offline mode. I store images and videos encoded in base64 in localstorage. When I debug this on browser it runs just fine, but on iPad it shouts out "The operation could not be completed" in a javascript promt.
I've tried placing the video with pure html tag and tru Ext.Video.
I'm missing anything here? Thanks
newhtml += "<video width='320' height='240' controls='controls'> <source src='data:video/mp4;base64,"+tmpStore.getAt(i).data.myPages[j].myProducts[k].myItens[0].fileData+"' /></video>";
Update:
Tested in iPad and Android 3.0 native browsers and the result is the same "The operation...". Tested with and without autoplay and controllers (in the video/source tags).