3

I used HTML5 video tag to display video on my webpage but i can only play Mp4 video not 3gp format video , I tried changing type 'video/3gpp' but it's not playing 3gp format videos,

<video width="520" controls>
<source src="<?="uploads/observation/video/".$observation['video'];?>" type="video/mp4">
</video>

Need help to solve this , I tried Jwplayer , Flowplayer libraries too which also not supports 3gp format.

Anand Jain
  • 779
  • 2
  • 10
  • 32
ManoharSingh
  • 487
  • 4
  • 27

1 Answers1

1

You need to install some video player plugin to make the video able to be played in browser. (e.g. VLC , QuickTime)

However that is difficult for Chrome, as now Chrome blocked for all video player that developed with NPAPI protocol.

mememoremore
  • 282
  • 1
  • 4
  • 15