Online Video Player that runs video files . mkv and . mp4

Asked

Viewed 18,770 times

1

I wonder if there is any video player plugin online that has to run mkv and mp4 files online with file Urls straight from the server already tried Jwplayer the DIVX Web video the first only accepts Mp4 the second nor works if the user has not installed Divx on pc.

Does anyone know of an online video player plugin even if it is in HTML5 that runs these two formats.

2 answers

0

Tries the https://videojs.com/

He is very good and has a very complete documentation.

An example of 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>
  <video id="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>

0

Works with video links on private or VIMEO servers. Youtube worked but began to show Youtube own locks.

To load the videos, just edit the settings of the player format and the addresses of the video in XML file. Download the free player from the developer’s site: https://www.hdwplayer.com/.

If it suits your needs, it is worth buying the PRO license and putting your logo

Browser other questions tagged

You are not signed in. Login or sign up in order to post.