gpt4 book ai didi

html - 在后台HTML网页中播放远程音频

转载 作者:行者123 更新时间:2023-12-03 02:34:42 25 4
gpt4 key购买 nike

我想单击一个按钮并播放一个说MP3文件的声音。
但是问题是,如果将HTML文件和声音文件放在同一目录中,那么它将起作用,但是如果我必须播放与任何其他远程URL一起放置的声音文件,则找不到该文件。

有人可以建议我播放远程音频文件该怎么做吗?

我从这里得到一个主意:http://wpaudioplayer.com/standalone

码:

  <html>  
<head>
<title>Your website</title>
<script type="text/javascript" src="audio-player.js"></script>
<script type="text/javascript">
AudioPlayer.setup("player.swf", {width: 290});
</script>
</head>
<body>
<p id="audioplayer_1">Alternative content</p>
<script type="text/javascript">
AudioPlayer.embed("audioplayer_1",
{soundFile: "http://www.otherwebsite.com/play.mp3"});
</script>
</body>
</html>

最佳答案

您确定“player.swf”,“audio-player.js”和“your.mp3”的路径正确吗?最好尝试写入这些文件的绝对路径。

  <html>  
<head>
<title>Your website</title>
<script type="text/javascript" src="http://www.website.com/path/audio-player.js"></script>
<script type="text/javascript">
AudioPlayer.setup("http://www.website.com/path/player.swf", {width: 290});
</script>
</head>
<body>
<p id="audioplayer_1">Alternative content</p>
<script type="text/javascript">
AudioPlayer.embed("audioplayer_1",
{soundFile: "http://www.otherwebsite.com/play.mp3"});
</script>
</body>
</html>

关于html - 在后台HTML网页中播放远程音频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4603123/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com