gpt4 book ai didi

javascript - HTML5 音频标签可以下载吗?

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

我使用了 HTML5 的音频标签并放置了 1 个下载按钮,我们可以直接下载为 mp3 文件的音频标签提供的任何功能。

<audio id="range" src="audio/1.mp3" type="audio/mp3" controls="controls">
<a href='audio/1.mp3'>DownloadButton</a>
</audio>
//used .play() , .volume() , .pause() working proper

我尝试了以上功能,但无法正常工作。我只想单击按钮并直接下载该音频文件。请告诉我是否有人知道正确的方法而不是指导我。!

使用的是Chrome浏览器。

最佳答案

如果您只是要下载文件,则不需要 <audio> tags,是播放文件的,不是下载的,当然可以两个都用,但是anchor和audio tag没有关系

<audio id="range" src="audio/1.mp3" type="audio/mp3" controls="controls"></audio>

<a href="audio/1.mp3" download="filename.mp3">DownloadButton</a>

关于javascript - HTML5 音频标签可以下载吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28759694/

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