Does Edge Browser Support the 3gp, f4v, avi,mov and wmv video files to render and play in Browser

Copper Contributor

Hi there,

 

Can you please let me know if the below html code is supported by Edge browser?

if not what is the html element that need to be used to make the videos render in edge browser.

 

<html>

<head>

<title>Media Player Demo</title>

</head>

<body>

<!-- No issue with mp4 and m4v files -->


<!-- Updated Code to make it render in all browsers for 3gp file start-->

<div class="mp-Player"> 

<div>3GP File</div>

<object style="width:300px;height:300px" data="d:\abc.3gp">

<param name="autoStart" value="False">

<b>This Video is not supported by the current browser</b>

</object>

</div>

<!-- Updated Code to make it render in all browsers for 3gp file End -->




<!-- Updated Code to make it render in all browsers for mp4 file start-->

<div class="mp-Player"> 

<div>MP4 File</div>

<object style="width:300px;height:300px" data="d:\abc.mp4">

<param name="autoStart" value="False">

<b>This Video is not supported by the current browser</b>

</object>

</div>

<!-- Updated Code to make it render in all browsers for mp4 file End -->




<!-- Updated Code to make it render in all browsers f4v file start-->

<div class="mp-Player"> <div>F4V File</div>

<object style="width:300px;height:300px" data="d:\abc.f4v" type="video/mp4"> 

<param name="autoStart" value="False">

<b>This Video is not supported by the current browser</b>

</object>

</div>

<!-- Updated Code to make it render in all browsers f4v file End-->







<!-- Updated Code to make it render in all browsers m4v file start-->

<div class="mp-Player"><div> M4V File</div>

<object style="width:300px;height:300px" data="d:\abc.m4v"> 

<param name="autoStart" value="False">

<b>This Video is not supported by the current browser</b>

</object>

</div>

<!-- Updated Code to make it render in all browsers m4v file End -->




<!-- Updated Code to make it render in all browsers avi file start-->

<div class="mp-Player"><div> AVI File</div>

<object style="width:300px;height:300px" data="d:\abc.avi"> 

<param name="autoStart" value="False">

<b>This Video is not supported by the current browser</b>

</object>

</div>

<!-- Updated Code to make it render in all browsers avi file End -->




<!-- Updated Code to make it render in all browsers mov file start-->

<div class="mp-Player"><div> MOV File</div>

<object style="width:300px;height:300px" data="d:\abc.mov"> 

<param name="autoStart" value="False">

<b>This Video is not supported by the current browser</b>

</object>

</div>

<!-- Updated Code to make it render in all browsers mov file End -->




<!-- Updated Code to make it render in all browsers wmv file start-->

<div class="mp-Player"><div> WMV File</div>

<object style="width:300px;height:300px" data="d:\abc.wmv"> 

<param name="autoStart" value="False">

<b>This Video is not supported by the current browser</b>

</object>

</div>

<!-- Updated Code to make it render in all browsers wmv file End -->

</body>

</html>

<!-- video file types Not working in Edge 3GP,F4V,AVI,MOV and WMV -->

Thanks,

Prudhvi Kunapareddy

+91 9959878828

 

1 Reply
Edge supports HTML5 video, same as Chrome, Firefox and other browsers.
most of the formats you mentioned are old, have many limitations and are no longer widely used, you need to convert them.

you can learn more in here:
https://www.w3schools.com/html/html5_video.asp

Only MP4, WebM, and Ogg video are supported by the HTML5 standard.

https://www.w3schools.com/html/html_media.asp