Video 视频mp4未加载

Video 视频mp4未加载,video,mp4,Video,Mp4,我遇到了一个奇怪的问题,我把这个播放器添加到了我的网站上。 很少有视频能起作用,也很少有不起作用。那可能是什么原因,有人知道吗?前三个很好,后一个不行。我在其他网页上也看到了类似的情况 <video id="example_video_1" class="video-js vjs-default-skin" controls preload="auto" width="640" height="264" poster="http://serwer1340051.home

我遇到了一个奇怪的问题,我把这个播放器添加到了我的网站上。 很少有视频能起作用,也很少有不起作用。那可能是什么原因,有人知道吗?前三个很好,后一个不行。我在其他网页上也看到了类似的情况

    <video id="example_video_1" class="video-js vjs-default-skin"
    controls preload="auto" width="640" height="264"
  poster="http://serwer1340051.home.pl/test/drogi_images/chajzer.png"
 data-setup='{"example_option":true}'>
     <source src="http://serwer1340051.home.pl/test/dtvn_GDDKiA_chajzer_14.12.mp4" type='video/mp4' />
 </video>
<video id="example_video_1" class="video-js vjs-default-skin"
   controls preload="auto" width="640" height="264"
  poster="http://serwer1340051.home.pl/test/drogi_images/tvn_21_12.png"
    data-setup='{"example_option":true}'>
  <source src="http://serwer1340051.home.pl/test/ddtvn_GDDKiA_21.12.mp4" type='video/mp4' /> 
  </video>
<video id="example_video_1" class="video-js vjs-default-skin"
controls preload="auto" width="640" height="264"
  poster="http://serwer1340051.home.pl/test/drogi_images/tvn_28_12.png"
 data-setup='{"example_option":true}'>
   <source src="http://serwer1340051.home.pl/test/DD_TVN_GDDKiA_28.12.mp4" type='video/mp4' />
  </video>
  <video id="example_video_1" class="video-js vjs-default-skin"
    controls preload="auto" width="640" height="264"
  poster="http://serwer1340051.home.pl/test/drogi_images/20130111_TVN_09_46_95090294.png"
     data-setup='{"example_option":true}'>
    <source src="http://serwer1340051.home.pl/test/20130111_TVN_09_46_95090294.mp4" type='video/mp4' />
 </video>

上一个视频中的编解码器是
MPEG-4视频(mp4v)
,浏览器不支持它

我已经检查了
DD\u TVN\u GDDKiA\u 28.12.mp4
codec,它是
H264
。这个很好

选中此项可了解浏览器支持的格式

如果要转换
MP4
文件,请使用


下面是一个命令行示例:

ffmpeg -i 20130111_TVN_09_46_95090294.mp4 -vcodec libx264 output.mp4