HTML5 <video> can play .mkv files?

后端 未结 3 1552
北恋
北恋 2020-12-30 03:33

So I accidentally opened an mkv video file with Chrome, and to my surprise it played it using the native player:

3条回答
  •  隐瞒了意图╮
    2020-12-30 04:37

    The website has probably set the mimetype of the file to video/webm. Chrome will open this inline rather than forcing a download (because otherwise it doesnt know what to do with it or how to open it).

    E.g., in apache this is done by using the AddType directive (can be done in a htaccess):

        AddType video/webm .mkv
    

提交回复
热议问题