How to playback MKV video in web browser?

HTML5 does not support .mkv / Matroska files but you can use this code…

<video>
    <source src="https://stackoverflow.com/questions/21192713/video.mkv" type="video/mp4">
</video>

But it depends on the browser as to whether it will play or not. This method is known to work with Chrome.

Leave a Comment