Keval Garala
Keval Garala

Reputation: 316

How can I play .3gp audio file in HTML

I am using simple HTML5 audio tag. For .mp3 file it is working fine.
But I want to play .3gp file.

<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
</audio>

Upvotes: 5

Views: 16717

Answers (2)

Mohammad Kermani
Mohammad Kermani

Reputation: 5396

You have to use video tag for video, because 3gp is a video extension.

<source
  src="video.3gp"
  type='video/3gpp; codecs="mp4v.20.8, samr"'>
</source>

to learn more you can read this page on Mozilla.

Upvotes: 1

Mikko Ohtamaa
Mikko Ohtamaa

Reputation: 83616

Browsers support only limited audio formats. see

3GP files are not playable in all browsers. Convert 3GP files to MP3 files, for example using Audacity audio editor.

Upvotes: 1

Related Questions