I am currently working on a site where users can upload binary media files (mainly .mp3). We need the “Download” method to save the file at the location you specified in the browser settings, and it needs to somehow display the progress bar.
Currently, all I'm worried about is finding a way to implement this using HTML5 and doing it in such a way that in future versions we can later access this stream so that as soon as we get this basic part of the download, we can how somehow implement a progress bar in the future.
I know that HTML5 has a File API, but very few browsers currently allow it, and we need this to work with IE 7+ and regularly used versions of Chrome and Firefox.
Thank you for your help!
source
share