Mozilla browser does not play mkv files in the <video>
. Is it possible to somehow make it play? Actually, here's the code that plays in Chrome, but without sound. Mozilla doesn't play at all:
<!DOCTYPE html> <html lang="ru"> <head> <title>Заголовок страницы</title> <meta charset="utf-8"> <meta name="description" content="Описание страницы"> </head> <body> </video controls width="300" height="200"> <source src="movie3.mkv"> </video> </body> </html>
You can, of course, convert it yourself, but not an option. After all, somehow youtube work, and a bunch of other video services that support a huge number of formats.
.mkv
to.mp4
yourself or is it only valid format.mkv
? All clarifications include in the question itself. - VenZell