我想在我的网页中播放音频。为此,我尝试使用一种方法。
<embed src="success.wav" autostart=true loop=false>
但是我必须进行服务器调用才能获取类似的波形文件
URL/play.php?file="success.wav"&log=353534543
它返回一个success.wav 文件。我试过这个但不工作
<embed src="URL/play.php?file=success.wav&log=353534543" autostart=true loop=false>
使用这种参数化 URL 在浏览器中播放 wav 文件的任何其他好方法。我不想使用闪光灯。
每次打开下载窗口时都不会播放音频。