Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Website mp3 not playing WinXP 64-bit using Firefox but plays using IE

  • 10 답장
  • 16 이 문제를 만남
  • 14 보기
  • 최종 답변자: AliceWyman

more options

I have a website with embedded mp3 soundtracks that work fine when using IE but not with Firefox (latest version.11Beta). Have tried all the suggested plug-ins to no avail. Running WinXP 64-bit 2003 SP2. Video & soundtrack works fine on other websites such as u-tube.

I have a website with embedded mp3 soundtracks that work fine when using IE but not with Firefox (latest version.11Beta). Have tried all the suggested plug-ins to no avail. Running WinXP 64-bit 2003 SP2. Video & soundtrack works fine on other websites such as u-tube.

선택된 해결법

Hi, Further to my previous reply. I have used cor-el code but have used Verdi's suggestion of having the soundtrack also in .ogg format & installed the necessary .ogg codecs for WMP & found that the soundtrack now plays when using Firefox as search engine. Thanks for the support.

문맥에 따라 이 답변을 읽어주세요 👍 3

모든 댓글 (10)

more options

That's because Firefox doesn't support playing mp3 files. It will play them if they are contained in a Flash audio or video player (like youtube) but not by themselves. If you are using the <audio> html element you can define multiple source files. Here are some instructions from our developer website - https://developer.mozilla.org/en/Using_HTML5_audio_and_video You can create an Ogg audio file that will work with Firefox by using a program like Audacity - http://audacity.sourceforge.net/

more options

You might be using IE-centric coding. See these test pages

Above links from http://kb.mozillazine.org/Testing_plugins#Other_media_tests

more options

You have QuickTime installed according to your system details list and the QuickTime should be able to handle MP3 files if the file is send with a MIME type that the plugin supports.

Other plugins should be able to play such a MP3 file as well if a proper MIME type is used.


Can you post a link, so we can check with which MIME type the server sends it?

글쓴이 cor-el 수정일시

more options

Hi Cor-el here is a link to my website: http://www.havewheelswilltravel.iinet.net.au/ Cheers

more options

The following bgsound tag in your page code is IE-centric ... meaning it only works in Internet Explorer:

<bgsound src="images/Soundtrack/On%20The%20Road%20Again-Willie%20Nelson.mp3" loop="-1">

Do a google search on bgsound firefox or embed mp3 sound Firefox and you will find many references, such as these:

글쓴이 AliceWyman 수정일시

more options

Code like this should work to play the MP3 file with the Windows Media Player in Firefox or with another player that supports that MIME type (I'm on Linux and use the Gecko Media Player plugin).

You can set the height and width to 0 to hide the player, but I prefer to have control available.


<embed type="application/x-mplayer2" src="images/Soundtrack/On%20The%20Road%20Again-Willie%20Nelson.mp3" height="50" width="200">
<noembed><bgsound src="images/Soundtrack/On%20The%20Road%20Again-Willie%20Nelson.mp3" loop=-1></noembed>
more options

If you want Firefox to play embedded audio using mimeType "application/x-mplayer2" and you don't have the Windows Media Player plugin (or another plugin that handles that mimeType) the Play Windows Media files in Firefox with the Windows Media plugin article will help you install it. Even though you have Windows Media Player installed, you may still be missing the plugin required to play back embedded audio!

글쓴이 AliceWyman 수정일시

more options

선택된 해결법

Hi, Further to my previous reply. I have used cor-el code but have used Verdi's suggestion of having the soundtrack also in .ogg format & installed the necessary .ogg codecs for WMP & found that the soundtrack now plays when using Firefox as search engine. Thanks for the support.

more options

Thanks for posting back. I'll mark your last reply as solving it.

more options

P.S. http://www.w3schools.com/html/html_sounds.asp has other solutions for embedding mp3 and ogg audio, for example:


<audio controls="controls" height="50px" width="100px">
  <source src="song.mp3" type="audio/mpeg" />
  <source src="song.ogg" type="audio/ogg" />
<embed height="50px" width="100px" src="song.mp3" />
</audio>

글쓴이 AliceWyman 수정일시