27

I have a video file in MKV format, i want to play that file in the browser without converting, how can i play this file format in browser?

<video width="320" height="240" controls>
  <source src="movie.mkv" type="video/mkv">
  Your browser does not support the video tag.
</video>

i want this file to be played in full screen mode always. My browser is chrome.

Raptor
  • 53,206
  • 45
  • 230
  • 366
Nitin Aggarwal
  • 451
  • 1
  • 7
  • 18

4 Answers4

20

It will refuse to play Matroska if the type attribute is set to video/x-matroska. Try removing the type attribute completely.

After some experimentation with this issue, I've found the best solution is to set the mime type to video/webm.

Matt Joiner
  • 112,946
  • 110
  • 377
  • 526
  • 2
    If i set content-type for *.mkv file as contenty-type = video/webm video and audio working in chrome. In IE, Firefox this still does not work. – Peter M. Jan 07 '15 at 00:09
  • 1
    Type `video/webm` worked for me on a Samsung TV. I did not work on any other browser I tested (Chrome, Safari, Firefox) on iPhone. On desktop I have image but no sound on Chrome. – nelsonspbr Sep 01 '20 at 19:19
7

I think Chrome doesn't play .mkv videos.

By the way, 'type' is mime-type, and mkv's mime type is video/x-matroska.

Try:

source src="movie.mkv" type="video/x-matroska"

If this works, maybe the sound will be muted, so you can try type="video/mp4".

David Cain
  • 16,484
  • 14
  • 65
  • 75
  • This does not work, but upper post from Matt working well at least in chrome (in IE and Firefox not). – Peter M. Jan 07 '15 at 00:13
2

I added the IIS Mime Type as (.mkv - video/webm) over the IIS option and it worked fine.

Blue
  • 22,608
  • 7
  • 62
  • 92
MiOVieira
  • 21
  • 1
-1

If you want to use video with path .mkv

<!-- mkv -->
  <video width="320" height="240" controls src="assets/animation.mkv"></video>
<!-- mp4 -->
  <video width="320" height="240" controls>
    <source src="assets/animation.mp4" type="video/mp4" />
  </video>
if you do not understand, click on link

Play Code

Mm.Mirzaei.dev
  • 333
  • 3
  • 10