为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

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

详细了解

Cannot play sound from https link

  • 3 个回答
  • 2 人有此问题
  • 3 次查看
  • 最后回复者为 cor-el

more options

I'd like to ask why we cannot play integrated sound on a web page when the sound file (.wav format) is located with https url link. From the same web page, the sound can be played well with Internet Explorer.

Thanks a lot for your support.

I'd like to ask why we cannot play integrated sound on a web page when the sound file (.wav format) is located with https url link. From the same web page, the sound can be played well with Internet Explorer. Thanks a lot for your support.

所有回复 (3)

more options

Can you post a link if the page doesn't require authentication or otherwise paste the relevant in a post?

Are you using an OBJECT or EMBED tag to play that .wav file or an AUDIO tag?

more options

Hi,

Here is the javascript code we used for playing sound in background.

 <script type="text/javascript">
 var DIV_beepSoundContainer = new div("beepSoundContainer","","");
 guiOMPage.addElement(DIV_beepSoundContainer);
      </script><div id="beepSoundContainer" class="" style="" onmouseover="" onmouseout="" onclick=""><object type="application/x-mplayer2" height="0" width="0"><param name="fileName" value="https://www.telephoniemobiles-standard.test.orange-business.com/console/standard/login/help/Btelm/beep1.wav"><param name="AutoStart" value="true"><param name="PlayCount" value="1"></object></div><script type="text/javascript">
 DIV_beepSoundContainer.init();
      </script>


Unfortenately, I could not give you the page web & use case where the sound should be played (authentication required). Again, the sound is played well with Internet Explorer.

If I replace the link by http://..., the sound works well.

Do you know any limitation of Mozilla related to the use of https?

Thanks a lot for your help.

Regards

由cor-el于修改

more options

For Firefox you need to specify the file name as a data attribute in the OBJECT tag


<object 
 data="https://www.telephoniemobiles-standard.test.orange-business.com/console/standard/login/help/Btelm/beep1.wav" 
 type="application/x-mplayer2" height="0" width="0">
 <param name="fileName" value="https://www.telephoniemobiles-standard.test.orange-business.com/console/standard/login/help/Btelm/beep1.wav">
 <param name="AutoStart" value="true">
 <param name="PlayCount" value="1">
</object>