I am trying to download a file from a user and want to play it using javascript.
The file is loaded correctly, and I can access it by seeing the name, type, etc. using the FileList API.
What I can not do is play the resulting file. I tried to do
myFile.play();
as I always do with a downloaded file, but it does not work.
Any idea?
source share