如何将Flash视频转换为html5视频?

时间:2014-03-03 05:39:37

标签: javascript html5 flash adobe html5-video

我想动态地将Flash视频转换为HTML5。无需下载并上传,然后再将其转换为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链接

  
    

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

  

如何在运行中将其转换并在只能播放HTML5视频的设备中显示?换句话说,即时Flash(* .swf)到HTML5转换器是否有像这样的API?

1 个答案:

答案 0 :(得分:0)

您需要使用ffmpeg之类的转换器。该命令如下所示:

ffmpeg -i flashvid.swf html5.mp4

和html:

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