Im in the process of creating a webpage and I'm trying to insert a video. The video player loads fine, and you can click play, but only sound is played, not video. (When previewing in chrome) When viewing in firefox, it works correctly
My code is as follows:
<video width="600" height="400" controls> <source src="ds2.mp4" type="video/mp4"> <source src="ds2.ogv" type="video/ogv"> <source src="ds2.webm" type="video/webm">
Your browser does not support the video tag.
</video>
My Doctype <!Doctype html>
I checked the MIME type, its video / mp 4. however, one of the mime requests is in red and canceled (when checked using google dev tools)
Im using microsoft 4 web expression (if relevant)
If I neglected any important information, please let me know and update the message poorly :) Thanks in advance for your help :)
html html5 google-chrome video
user3578539
source share