skip to Main Content

I try to stream audio from server http://185.34.28.166:8000/;stream.mp3
and when i play on Chrome or Mozilla it work good but when i play this audio on Safari i see loading circle and nothing play. I tried with all formats .mp3, .wav, also .ogg (i know that this format .ogg is not supported by safari). Below code and image how looks like not working audio in safari

<audio class="kopageAudio" controls="">
    <source src="http://185.34.28.166:8000/;stream.mp3" type="audio/mp3">
    <font style="vertical-align: inherit;">
        <font style="vertical-align: inherit;">Twoja przeglądarka nie obsługuje znacznika audio.
        </font>
    </font>
</audio>

enter image description here

I try all formats and many parameters in tag
I would like to correctly play stream in audio tag on website

2

Answers


  1. There’s something wrong with the actual source stream URL.

    Login or Signup to reply.
  2. Did you try to set the attribute preload="none" as suggested on this post?

    Mp3 with audio tag does not work in safari

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search