音频 mp3 不在 HTML 中播放

时间:2021-02-10 09:45:36

标签: html html5-audio

我下载了一个 mp3 音频文件并将其上传到 Google Drive。我复制了链接并将其粘贴到 HTML 的 src 中。我得到了控件,但无论如何都没有播放音频。我做错了什么?

代码:

<audio controls loop>  
 <source="https://drive.google.com/file/d/1NE1YL45F3gC0PKgIn42WvjIlmtsBavei/view?usp=sharing" type=audio/mpeg">
 </audio>

1 个答案:

答案 0 :(得分:0)

您有错别字,请阅读here 的代码外观。您缺少 src 和引号。

这也是重复的问题: How to play google drive mp3 file using html audio tag?

<audio controls loop>  
 <source src="https://docs.google.com/uc?export=download&id=1NE1YL45F3gC0PKgIn42WvjIlmtsBavei" type="audio/mpeg">
 </audio>