3

Can I include *.caf files in HTML5 tags or do I need to convert them first?

Kara
  • 6,115
  • 16
  • 50
  • 57
Newy
  • 38,977
  • 9
  • 43
  • 59

2 Answers2

3

Here is an example:

    <audio controls>
            <source src="radio.opus" type="audio/ogg; codecs=opus">
            <source src="radio.caf" type="audio/x-caf; codecs=opus">
            Your browser does not support HTML5 audio.
    </audio>
hdante
  • 7,685
  • 3
  • 31
  • 36
0

You'll need to convert them to OGG and MP3 at least.

Ian Devlin
  • 18,534
  • 6
  • 55
  • 73