I want to use short video tag format like
<video src="path" controls></video>
And tutorial in w3school says:
To make it work in all browsers - use
<source>elements inside the<video>element.
But as far as I can see my browsers handle short syntax very good (I have Google Chrome and Firefox). So should I be worried about any possible issues with short video tag notation?
sourcepart is about making it compatible with all browsers by including alternative formats for browsers that could not support the format specified insrc.In example: If you tried to play an
.oggfile in IE12, which doesn't support.oggwith the code above, there would be no video whatsoever. If you provided alternative formats insidesource, IE would eventually find the one it can handle and would play it instead.