Этот сайт имеет ограниченную функциональность, пока мы проводим техническое обслуживание для улучшения его работы. Если какая-либо статья не решила вашу проблему и вы хотите задать вопрос, наше сообщество поддержки ждёт вас: @FirefoxSupport в Твиттере и /r/firefox на Reddit.

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

How to get Audio html5 tag to work in Firefox

  • 3 ответа
  • 1 имеет эту проблему
  • 22 просмотра
  • Последний ответ от cor-el

more options

Hi guys, I'm having a really annoying problem, in which HTML5 audio tags either do not work at all in Firefox; they have a huge delay before playing, or they play (but with many errors and inconsistencies).

I'm using Firefox 35.0

I'm using ONLY .ogg files

Here is an example of my code:

<audio autoplay="autoplay" controls="controls" id="audio" style="display:none;">
 <source src="Music.ogg"
         type='audio/ogg'>
</audio>

<script>
  myAudio=document.getElementById('audio');
  myAudio.addEventListener('canplaythrough', function() {
    this.currentTime = 1;
    this.play();
  });
</script>

The code is working on both Internet Explorer and Chrome.

When I remove the display:none attribute, the audio player is visible.

Hi guys, I'm having a really annoying problem, in which HTML5 audio tags either do not work at all in Firefox; they have a huge delay before playing, or they play (but with many errors and inconsistencies). I'm using Firefox 35.0 I'm using ONLY .ogg files Here is an example of my code: <pre><nowiki><audio autoplay="autoplay" controls="controls" id="audio" style="display:none;"> <source src="Music.ogg" type='audio/ogg'> </audio> <script> myAudio=document.getElementById('audio'); myAudio.addEventListener('canplaythrough', function() { this.currentTime = 1; this.play(); }); </script></nowiki></pre> The code is working on both Internet Explorer and Chrome. When I remove the display:none attribute, the audio player is visible.

Изменено cor-el

Все ответы (3)

more options

I've called the big guys to help you. Good luck.

more options

Hi there, I appreciate the response. Fortunately, I just figured out what the cause of the problem was!

For some reason, the Javascript I was using broke the sound in Firefox. Without the script part, the sound works fine.

This creates a couple of new functionality problems, but they don't have anything to do with Firefox.

Thanks for helping me, hopefully I'll be able to find some way to keep the functionality but have it work in FF.

more options

You can also try to set the width:0px and height:0px and instead of using display:none