有同样的问题。我的网络编辑不知道如何创建多种格式的视频...
使用对您问题的评论,我这样做了:
<embed height="280" type="" width="320" wmode="transparent" bgcolor="undefined" allowfullscreen="true" x-shockwave-flashallowscriptaccess="always" application="" src="http://player.longtailvideo.com/player.swf" flashvars="file=http://www.musikali.dk/media/1500/new_holland_vs_john_deere.mp4" />
我将它作为 Umbraco CMS 的宏使用它作为 xslt 的一部分,它处理多种文件类型
<xsl:if test="contains(macro/Media1/File/umbracoFile, '.mp4')">
<embed height="280" type="" width="320" wmode="transparent" bgcolor="undefined" allowfullscreen="true" x-shockwave-flashallowscriptaccess="always" application="" src="http://player.longtailvideo.com/player.swf">
<xsl:attribute name="flashvars">file=http://www.musikali.dk<xsl:value-of select="macro/Media1/File/umbracoFile"/></xsl:attribute>
</embed>
</xsl:if>
...所以它不是 html5,但允许我的编辑器只使用一种文件类型。