Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to embed an MP4 video into a webpage of mine. At first I was setting the plugin to Quicktime player, but the movie wasn't playing smoothly so I decided to use the Windows Media Player plugin. All of this works, except for users with WinXP. Is there a trick to make it work on WinXP too? This is the HTML I have used:

<object classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" width="300" height="150" data="test.mp4" url="test.mp4" type="video/x-ms-asf">
<param name="url" value="test.mp4">
<param name="filename" value="test.mp4">
<param name="autostart" value="1">
<param name="autosize" value="1">
<embed src="test.mp4" type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" width="300" height="150" autostart="true" scale="tofit"></embed>
</object>
share|improve this question
2  
This is bad idea if you want it to be compatible for lot of browsers. You should consider using HTML5 to embed the videos or use Youtube/Vimeo for max compatiblity or another JS method. – bybe Feb 20 at 16:01

migrated from webmasters.stackexchange.com Mar 9 at 16:29

2 Answers

jwplayer is probably the best IMHO HTML5 video player

http://www.longtailvideo.com/jw-player/

And rather than only specifying a single video format you would use along with mp4, ogg, webm etc so that your video would load in most browsers, and mobile devices.

This is example code with flash fallback

<script type="text/javascript" src="/jwplayer/jwplayer.js"></script>

<video height="270" width="480" id="myVideo">
  <source src="/static/bunny.mp4" type="video/mp4">
  <source src="/static/bunny.webm" type="video/webm">
</video>

<script type="text/javascript">
  jwplayer("myVideo").setup({
    modes: [
        { type: 'html5' },
        { type: 'flash', src: '/jwplayer/player.swf' }
    ]
  });
</script>

http://www.longtailvideo.com/support/jw-player/jw-player-for-flash-v5/22644/using-the-html5-video-tag/

share|improve this answer

Use HTML5:

<video width="300" height="150" controls>
<source src="movie.mp4" type="video/mp4">
 Your browser does not support the video tag.
</video>

Example with events

share|improve this answer
Thx for the reply, but the video tag isn't supported in IE8? – mattyh88 Feb 21 at 8:15
Use modernizr it's easy and the HTML5 tags are supported even in IE6 – Jorge Eduardo Mar 12 at 17:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.