Reputation: 316
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
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
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