Hello,
I embed a mp4 video into a webpage, using the embed src script. I can view it when I browse from iphone, but not android.
I did some research and found out that I need to use html 5, which uses the tag.
However, how do I find out what version of the video I have? I tried
<video width="560" height="340" controls>
<source src="<?php echo $video; ?>" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
</video>
But it's not working either. Any ideas? Thank you in advance