I would like to embed mpg (dvd pliant mpeg2) movie files to my web page. I do not have any chance to convert these videos to any other format. This web is only for personal use so any type of solution would be perfect.
Really appriciate any advice or solution.
Here is my code:
<html xmlns="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head>
<body>
<embed src="my_video.mpg" autostart="false" height="350" width="500" />
</body>
</html>
SOLVED:
My solution for this problem was that i had to reinstall the wmp plugin for my browsers and its working fine
I would like to embed mpg (dvd pliant mpeg2) movie files to my web page. I do not have any chance to convert these videos to any other format. This web is only for personal use so any type of solution would be perfect.
Really appriciate any advice or solution.
Here is my code:
<html xmlns="http://www.w3/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head>
<body>
<embed src="my_video.mpg" autostart="false" height="350" width="500" />
</body>
</html>
SOLVED:
My solution for this problem was that i had to reinstall the wmp plugin for my browsers and its working fine
Share Improve this question edited Apr 4, 2012 at 16:38 Wermerb asked Apr 4, 2012 at 11:10 WermerbWermerb 1,0493 gold badges16 silver badges30 bronze badges 5-
You do know there is a
<video>
tag these days... – tkone Commented Apr 4, 2012 at 11:42 - 3 You do know that <video> tag is not supported mpeg... – Wermerb Commented Apr 4, 2012 at 11:49
- In what browser? Several browsers use whatever underlying files the system supports (safari es to mind -- whatever QuickTime supports the browser will playback. This is why you can make an ogg file play back in a video tag on safari) – tkone Commented Apr 4, 2012 at 11:52
- I tried it in ie and firefox. And it's wrote to me that not supported mime type – Wermerb Commented Apr 4, 2012 at 11:55
- I didn't say it would work in ie or Firefox. Safari happens to implement this. I'm not positive that it'll do the same on windows, but it might. Regardless, if you need it to work in ff/ie you're going to need to embed a player with this functionality. You can embed windows media player in both ff and ie. I suggest looking into that – tkone Commented Apr 4, 2012 at 11:58
2 Answers
Reset to default 2<video width="500px" height="350px" autobuffer="autobuffer" autoplay="autoplay" loop="loop" controls="controls">
<source src='my_video.mpg' type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
</video>
Source
Video tag specification
Try this (Works with IE)
<EMBED SRC="movie.mpg" AUTOPLAY=true WIDTH=160 HEIGHT=120></EMBED>
edit: Hmmm that works for me. You can try this as an alternative:
<object id="MediaPlayer1" CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft./activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
standby="Loading Microsoft Windows® Media Player ponents..." type="application/x-oleobject" width="280" height="256">
<param name="fileName" value="your_file.mpg">
<param name="animationatStart" value="true">
<param name="transparentatStart" value="true">
<param name="autoStart" value="true">
<param name="showControls" value="true">
<param name="Volume" value="-450">
<embed type="application/x-mplayer2" pluginspage="http://www.microsoft./Windows/MediaPlayer/" src="your_file.mpg" name="MediaPlayer1" width=280 height=256 autostart=1 showcontrols=1 volume=-450>
</object>
Also make sure you have the right codecs installed on your PC