How to play/decode Ogg Opus Audio in Safari?

Viewed 2545

OGG Opus audio format is not supported in Safari. Are there any high-level (decoding?) libraries that make .ogg files playable in Safari?

2 Answers

You should just have fallback for browsers that don't support it. If you'd like to take a more complex approach this is always an option.

<audio controls>
  <source src="audio.ogg" type="audio/ogg">
  <source src="audio.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>

Related