How to know the type of audio to write if its mp3, what are those types? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to know the type of audio to write if its mp3, what are those types?

<audio controls> <source src="http://www.sololearn.com/uploads/audio.mp3" type="audio/mpeg"> <source src="http://www.sololearn.com/uploads/audio.ogg" type="audio/ogg"> </audio> in type for mp3 it says audio/mpeg. whats mpeg, is it specific to mp3 files? Forgive me for the ignorant question!

8th Jun 2016, 6:46 AM
Melon
Melon - avatar
3 Answers
+ 2
It's related with mp3. The biggest difference was, mp3 only deals with audio, while mpeg deals with audio and also video. Another difference is that mp3 is just a portion of the standard mpeg. The use of mpeg still widespread while mp3 would been superseded. Meanwhile, this isn't an ignorant question. Everyone is free to ask when they're don't know. Cheers.
8th Jun 2016, 8:14 AM
David Febryanto
David Febryanto - avatar
+ 1
That's definitly not an ignorant question. This subject is very complicated, at least for me. Mpeg and ogg are so called containers. The best thing to do if you want a deaper understanding is to read articles and wikis about media types, formats, containers, codecs etc..
8th Jun 2016, 7:26 AM
ZinC
ZinC - avatar
+ 1
thank you for the answers! 😄
8th Jun 2016, 9:15 PM
Melon
Melon - avatar