Hi all,
I'm developing a website and have a video on the homepage. I'm trying to use html5 video but my mp4 file will not play. Here are the video specs:
Format: H.264, 548 x 308, AAC, 48000Hz
FPS: 29.97
Data Size: 34 MB
Data Rate: 414.81 kbit/s
I'm developing a website and have a video on the homepage. I'm trying to use html5 video but my mp4 file will not play. Here are the video specs:
Format: H.264, 548 x 308, AAC, 48000Hz
FPS: 29.97
Data Size: 34 MB
Data Rate: 414.81 kbit/s
Code:
<video class="glf_video" controls="controls" autoplay>
<source src="https://www.mydomain.com/videos/video.mp4" type="video/mp4" />
<source src="https://www.mydomain.com/videos/video.webm" type="video/webm" />
<source src="https://www.mydomain.com/videos/video.ogv" type="video/ogg" />
<object type="application/x-shockwave-flash" data="http://releases.flowplayer.org/swf/flowplayer-3.2.1.swf" width="548" height="308" >
<param name="movie" value="http://releases.flowplayer.org/swf/flowplayer-3.2.1.swf" />
<param name="allowFullScreen" value="true" />
<param name="wmode" value="transparent" />
<param name="flashVars" value="config={'playlist':['https%3A%2F%2Fwww.getlowfees.com%2Fimg%2Fvideo.jpg',{'url':'https%3A%2F%2Fwww.mydomain.com%2Fvideos%2Fvideo.mp4','autoPlay':false}]}" />
<img src="https://www.mydomain.com/img/video.jpg" title="No video playback capabilities, please download the video below" />
</object>
</video>