我如何在html5视频标签中播放avi文件。我已经尝试了很多建议,但是没有用

时间:2019-01-31 06:53:42

标签: javascript html5 video avi

如何在html5中播放avi文件视频?我已经检查并使用了许多解决方案,但我的问题没有保存。实际上,我想创建一个播放器,可以一个接一个地播放多个视频,但我不能。请帮助我。

<video  class="inlineVideo" controls="controls" playsinline width="180" height="300">
                                             <source  src="video.mp4" type="video/mp4" >
                                              <source  src="video.mp4" type="video/ogg" >
                                                 <source  src="video.mp4" type="video/WebM">


                                            <p>Video is not Supporting</p>
                                        </video>

-javascript-代码-

<script type="text/javascript">
  window.addEventListener('load', function(event){
      document.querySelectorAll(".inlineVideo").forEach((el) => {
        el.onplay = function(e){
          // pause all the videos
          document.querySelectorAll(".inlineVideo").forEach((el1) => {
            if(el === el1)
              el1.play();
            else
              el1.pause();
          });
        }
      });
    });
    </script>

0 个答案:

没有答案