2012-06-13 247 views
0

我有最新的FF,我試圖使用視頻標籤嵌入視頻。我在我的桌面上的文件保存的test.html和我的視頻也是在桌面 這是我使用html5不支持視頻

<!DOCTYPE html> 
<html> 
<body> 
<video controls> 

    <source src="Wildlife.wmv"> 
    Your browser doesn't support video, you may download the 

</video> 
</body> 
</html> 

的代碼我得到一個錯誤No video with supported format and MIME type found.

任何想法可能是什麼問題?

回答

0

你可以試試這個

<body> 

<object width="50%" height="50%" type="video/x-ms-asf" url="Wildlife.wmv" data="Wildlife.wmv" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"> 
<param name="url" value="Wildlife.wmv"> 
<param name="filename" value="Wildlife.wmv"> 
<param name="autostart" value="1"> 
<param name="uiMode" value="full" /> 
<param name="autosize" value="1"> 
<param name="playcount" value="1"> 
<embed type="application/x-mplayer2" src="Wildlife.wmv" width="100%" height="100%" autostart="true" showcontrols="true"  pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"></embed> 
</object> 

</body> 
+0

我們可以在HTML4就此別過那麼什麼是HTML5 –

+0

視頻標籤的好處「.WMV」視頻文件不被任何瀏覽器的支持。這是WMV視頻文件的唯一途徑。如果不是,則更改視頻的擴展名。 –

0

試試這個,如果你是在各種用戶代理運行應用程序。

<!DOCTYPE html> 
    <html> 
    <body> 
    <video controls> 

     <source src="Wildlife.mp4" type="video/mp4"> 
     <source src="Wildlife.ogg" type="video/ogg"> 
    <source src="Wildlife.webm" type="video/webm"> 
    Your browser doesn't support video, you may download the 

    </video> 
    </body> 
    </html>