Online Video Player that runs .mkv and .mp4 video files [closed]

1

I would like to know if there is an online video player plugin that has how to run online mkv and mp4 files with file URLs direct from the server already tried the JWPlayer the DIVX Web video the first only accepts the second Mp4 neither works if the user does not have DivX installed on the pc.

Someone knows some video player plugin online even though it is in HTML5 that runs these two formats.

    
asked by anonymous 05.05.2015 / 02:54

2 answers

0

It works with video links on private or VIMEO servers. Youtube was working but it started to present YouTube's own locks.

To load the videos, simply edit the settings of the player format and the addresses of the videos in XML file. The free player can be downloaded from the developer's website: link .

If it suits your needs, it pays to buy the PRO license and put your logo

    
23.03.2018 / 20:46
0

Try the link

It is very good and has complete documentation.

An example implementation, taken from the videojs page itself:

<head>
  <link href="https://vjs.zencdn.net/7.0.3/video-js.css" rel="stylesheet">

  <!-- If you'd like to support IE8 (for Video.js versions prior to v7) -->
  <script src="http://vjs.zencdn.net/ie8/ie8-version/videojs-ie8.min.js"></script></head><body><videoid="my-video" class="video-js" controls preload="auto" width="640" height="264"
  poster="MY_VIDEO_POSTER.jpg" data-setup="{}">
    <source src="MY_VIDEO.mp4" type='video/mp4'>
    <source src="MY_VIDEO.webm" type='video/webm'>
    <p class="vjs-no-js">
      To view this video please enable JavaScript, and consider upgrading to a web browser that
      <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a>
    </p>
  </video>

  <script src="https://vjs.zencdn.net/7.0.3/video.js"></script>
</body>
    
02.07.2018 / 03:55