搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

I made a memorial page for my son; the music plays on Chrome and Opera, but not on Firefox--why?

  • 4 个回答
  • 4 人有此问题
  • 4 次查看
  • 最后回复者为 DCKGranny

more options

The page is at: http://www.angelrob.com/33bday/33rd.html

On both Chrome and Opera, the song I embedded, "Stardust," will play. It does not play on Firefox. (I bought the song from Amazon to use on this page.) Is there some coding I'm missing for Firefox?

The page is at: http://www.angelrob.com/33bday/33rd.html On both Chrome and Opera, the song I embedded, "Stardust," will play. It does not play on Firefox. (I bought the song from Amazon to use on this page.) Is there some coding I'm missing for Firefox?

被采纳的解决方案

Both object and embed require a plugin. Try this:

<audio src="Stardust.mp3" autoplay>
  <object data="Stardust.mp3" type="application/x-mplayer2" width="0" height="0">
    <param name="filename" value="Stardust.mp3">
    <param name="autostart" value="1">
    <param name="playcount" value="true"> 
    <embed bgsound src="Stardust.mp3" Autostart="True" Hidden="True" Loop="True">
  </object>
</audio>

What that does is try to use a more modern method of playing the MP3 first, and if that doesn't work, uses your object tag for the Windows Media Player, and if that doesn't work, uses your embed tag for whatever other plugin the user might have that can play MP3s. Does it work for you in all the browsers you care about?

定位到答案原位置 👍 2

所有回复 (4)

more options
more options

I went to the page you suggested, and read through it many times. But I am 73 and self-taught in html coding (made myself learn in 2002 when I wanted to make a memorial website for my 16-year-old son), and I don't understand the page you sent me to. Firefox seems to require so many things that the other browsers don't! Every explanation on that page seems to require going to other pages and downloading other plug-ins. Isn't there a simple way to get Firefox to recognize my primitive html coding using bgsound? HELP! Or should I just warn my family and friends not to use Firefox when viewing my son's memorial?

由DCKGranny于修改

more options

选择的解决方案

Both object and embed require a plugin. Try this:

<audio src="Stardust.mp3" autoplay>
  <object data="Stardust.mp3" type="application/x-mplayer2" width="0" height="0">
    <param name="filename" value="Stardust.mp3">
    <param name="autostart" value="1">
    <param name="playcount" value="true"> 
    <embed bgsound src="Stardust.mp3" Autostart="True" Hidden="True" Loop="True">
  </object>
</audio>

What that does is try to use a more modern method of playing the MP3 first, and if that doesn't work, uses your object tag for the Windows Media Player, and if that doesn't work, uses your embed tag for whatever other plugin the user might have that can play MP3s. Does it work for you in all the browsers you care about?

more options

Thank you, jscher2000! I copied your entire code, but it produced multiple renditions of the song. First I cut out the <embed bgsound> part, but I could still hear Nat singing on 2 tracks, so then I cut out the <object data> part, and it now works perfectly on all the browsers I have tried. I had also previously downloaded a plug-in for Foxfire. I guess my antique code of <embed bgsound> is of no use anymore. I will have to go and fix my other webpages. Thank you for your help!