2014-03-03 97 views
3

我想將Flash視頻轉換爲HTML5。無需下載並上傳,然後再次將其轉換爲HTML5視頻?如何將Flash視頻轉換爲html5視頻?

這是從Adobe

<embed type="application/x-shockwave- 

flash"src="/swf/software/flash/about/flash_about_793x170.swf" width="793" height="225" 

id="shell_object" name="shell_object" bgcolor="#ffffff" quality="high" scale="noscale" 

salign="tl" wmode="opaque" title="Adobe Flash Player"> 

Flash源鏈接

/swf/software/flash/about/flash_about_793x170.swf

視頻鏈接的源代碼

實際的HTML Lin ķ

http://www.adobe.com/software/flash/about/

我將如何轉換它的飛行,並顯示在一個設備僅能夠播放HTML5視頻?換句話說,一個即時Flash(* .swf)到HTML5轉換器是否有像這樣的API可以做到這一點?

回答

0

你需要使用像ffmpeg這樣的轉換器。該命令是這樣的:

ffmpeg -i flashvid.swf html5.mp4 

和HTML:

<video> 
    <source src="html5.mp4" type="video/mp4" /> 
</video> 
+0

我認爲意味着OP將在瀏覽器上飛 –