html5 - How to play movie with .mov extension in browser -


i have tried following html code , neither works playing .mov files in firefox or ie

<video controls="controls" src="video/video_1429118630.mov">your browser not support <code>video</code> element.</video>-->  <embed src="video/video_1429118630.mov"         pluginspage="http://www.apple.com/quicktime/"         width="320" height="250" controller="true" loop="false"         autoplay="false"> </embed> 

not sure doing wrong

you not doing wrong, video couldn't play because mime type being sent not supported. try serving video web server such apache , mime type automatically set you. here link of mime types of common video file extension


Comments