Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open .mov format video in HTML video Tag?

I want to play .mov video like as this, but video doesn't play in any browser.

<video width="400" controls Autoplay=autoplay>   <source src="D:/mov1.mov" type="video/mov"> </video> 
like image 795
Divyang Patel Avatar asked Jul 13 '15 10:07

Divyang Patel


People also ask

How do I view MOV videos?

Apple's iTunes and QuickTime programs, VLC, Windows Media Player, and Elmedia Player are all able to play MOV files. If your Apple QuickTime Movie file has the . QT or . MOVIE file extension, you probably need to use QuickTime unless you want to try renaming the file extension to .

How do I watch a .MOV file in my browser?

The . mov format video can't be decoded by a web browser, but it's possible to play . mov format video from URL with specificated video player software, such as VLC media player. In VLC media player, click Media>Open Network Stream, then paste the URL to open.

Can browsers play MOV?

Simply speaking, MOV is a special video format designed for Apply devices. In the technical term, MOV files are made under 8-bit architecture which can only be played if the browser is also designed with the same architecture.


1 Answers

You can use below code:

<video width="400" controls autoplay>     <source src="D:/mov1.mov" type="video/mp4"> </video> 

this code will help you.

like image 124
Yazdan Haider Avatar answered Oct 20 '22 20:10

Yazdan Haider