2
我使用下面的代碼在瀏覽器中播放視頻從服務器獲取SRC路徑:對象標籤不使用Chrome播放視頻
<object id="MediaPlayer1" CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
standby="Loading Microsoft Windows® Media Player components..." type="application/x-oleobject" width="280" height="256">
<param name="src" value="C:\Users\Public\Videos\Sample Videos\fp.avi" />
<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.com/Windows/MediaPlayer/" src="C:\Users\Public\Videos\Sample Videos\fp.avi" name="MediaPlayer1" width=280 height=256 autostart=1 showcontrols=1 volume=-450>
</object>
我想給它一個本地路徑測試代碼。這裏我使用的是擴展名爲.avi
的視頻文件。
它在Mozilla和Internet瀏覽器中工作正常,但它不在Chrome中。任何想法爲什麼?