Reputation: 107
<video width="320" height="240" controls>
<source src="films/myfilm/video/1080p.mkv" type="video/webm">
<source src="films/myfilm/audio/en.mka" type="audio/mpeg">
</video>
I serach google and i don't find answer.
Upvotes: 0
Views: 294
Reputation: 898
You can not directly play them using the video-tag. Your best option is to convert the files into a compatible format, see:
https://developer.mozilla.org/en-US/docs/Web/HTML/Supported_media_formats
Otherwise, you have to use a plug-in like DivX to stream the formats to your browser:
http://www.divx.com/en/software/web-player/features
Upvotes: 1