admin管理员组文章数量:1346033
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
本文标签: phpHow can I embed an mpg into my webpageStack Overflow
版权声明:本文标题:php - How can I embed an mpg into my webpage - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743821158a2544813.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论