我有一个简单的html5视频试用,跳到结束@ 40秒。 它非常适合W3C的剪切和粘贴。 在Firefox和Chrome中以相同的方式行事
在vlc中播放正常。 世界上发生了什么。 我尝试过指定编解码器,但没有区别。
<style>
#mVideo
{
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-webkit-transform-origin: center;
-moz-transform-origin: center;
-ms-transform-origin: center;
}
</style>
<title>html5_rotate3</title>
</head>
<body>
<div><video controls="controls" width="320" height="240">
<source src="http://www.meanroy.com/Music_Vids/BigSur_little_Girls.mp4">
This is fallback text to display if the browser does not support the video element.
</video>
</div>
<br>
<div>
<video autobuffer="true" id="mVideo" controls="controls" width="320" height="240">
<source src="http://www.meanroy.com/Music_Vids/BigSur_little_Girls.mp4" type="video/mp4">
This is fallback text to display if the browser does not support the video element.
</video>
<div>
</div>
</div>