0

I have a problem with building HTML5 audio player using m3u format.

I have tried do it like this:

<audio id="audio-player" src="http://fm101.uz:9900/mobile.m3u" type="audio/aacp" controls="controls"></audio>
Jonas
  • 121,568
  • 97
  • 310
  • 388
mihael_p
  • 1
  • 1
  • 2

1 Answers1

1

Instead of the m3u extension use the true url, you can discover this url opening the m3u file on winamp (or another audio program) and on the playlist window, right-click, properties and you can see "http://fm101.uz:9900/fm101_high" or something similar.

<audio src="http://fm101.uz:9900/fm101_high" controls="controls"> </audio>

http://jsfiddle.net/h4oo9012/1/

Kuugal
  • 11
  • 2