Domanda

I am creating a video hosting site where users can upload videos which are then converted into a web viewable webm format via FFMPEG, but I seem to have a problem getting the HTML5-video to work on Internet Explorer (IE 11, Windows 8.1, webm extensions installed).

The standard 'Big Bunny Buck' video (found here: http://www.webmfiles.org/demo-files/) works fine on IE, but if I convert a video to webm using FFMPEG it doesn't play at all but simply states 'Invalid Source' on the HTML5 video element.

I am using these commandline args to convert to webm on FFMPEG:

ffmpeg.exe -y -i bunny.webm -vcodec libvpx -acodec libvorbis -f webm bunny2.webm

Its werid as the videos work fine on VLC, windows media player, Firefox and Chrome but not on IE. Anyone ran into this issue before or could offer any pointers of how to fix it?

You can download this example zip (https://www.dropbox.com/s/dhp64c4rh7xqttj/IE-Webm.zip) which includes a bat script to run the above FFMPEG arguments and a html page for rendering two video elements for the before and after encoding with FFMPEG.

Thanks!

È stato utile?

Soluzione

Downloaded the latest version and seems to have sorted it, I must have just been really unlucky and grabbed a build that was broken!

Altri suggerimenti

  • IE 11 see

Deprecated Elements msdn.microsoft.com/en-us/library/ie/hh773181%28v=vs.85%29.aspx

Elements msdn.microsoft.com/en-us/library/ie/hh772960%28v=vs.85%29.aspx

  • Please use this emulation e.g. BGSOUND is able with this emulation

  • Do not forget: In IE 11 you cant use attachment !!!!!

  • html document begin must be

< !DOCTYPE HTML > < HTML LANG="xx" > < !-- xx like en or de ... -- >

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top