I am uploading the mp4 videos on server and playing them on the front end embeded with HTML video tag. Below is the code which is used.
<video width="480" height="294" controls="controls">
<source src="http://server.com/user_data/machine/133/videos/1_2.mp4" type="video/mp4">
<source src="http://server.com/user_data/machine/133/videos/1_2.mp4" type="video/webm">
<source src="http://server.com/user_data/machine/133/videos/1_2.mp4" type="video/ogg">
</video>
Problem is, it plays some of the videos and some not. Both are mp4 but it plays some of the videos and others not. And for some, they does not video but only the audio.
Can you help me out on what to check and how to resolve this.
thanks,