1

帮助设置 video.js 的说明我在尝试设置此播放器时得到的帮助有限:http: //www.videojs.com/docs/setup/ 链接说明很短/(对于比我更熟练的人来说很容易) ,但我需要一些建议,请。自托管说明显示了这一点:

<link href="http://example.com/path/to/video-js.css" rel="stylesheet">
<script src="http://example.com/path/to/video.js"></script>
<script>
  _V_.options.flash.swf = "http://example.com/path/to/video-js.swf"
</script>

我得到的帮助将此代码添加到适当的文件中:

<link href="http://theurl.com/video-js/video-js.css" rel="stylesheet">
<script src="http://theurl.com/video-js/video-js.css"></script>
<script>
  _V_.options.flash.swf = "http://theurl.com/video-js/video-js.swf"
</script>

 <video id="mp4" class="video-js vjs-default-skin"
  controls preload="auto" width="640" height="264"
  poster="http://video-js.zencoder.com/oceans-clip.png"
  data-setup='{"example_option":true}'>
  <source src="http://theurl.com/uploads/" type='video/mp4' />
 </video>

根据http://www.videojs.com/docs/setup/ 上的非常简短的说明,这个新添加的代码看起来正确吗?

4

1 回答 1

0

它看起来是正确的,但您需要确保源标签的 src 属性指向已经上传到网络某处的特定视频文件。

<source src="http://theurl.com/uploads/MY_VIDEO.mp4" type='video/mp4' />
于 2013-06-03T19:47:00.883 回答