我知道之前已经问过这个问题,但我还是有点麻烦。我想在各个点上将小的mp3文件嵌入到网页上。我已经录制了这些文件并将它们下载到(我猜对了)我的下载中。如果我要使用这样的东西:
<audio src="something.mp3" controls></audio>
我如何创建一个链接到我的音频文件的路径,以便其他人都能听到它。我知道这可能非常简单,但我仍然很难过。
答案 0 :(得分:1)
嗯,你需要将你的mp3与html文件一起放在服务器上,并使用相对路径。
如果您的html文件和mp3文件在同一目录中
public_html/
index.html
something.mp3
然后您可以保持现在的代码。
如果你想将mp3保存在子目录中
public_html/
index.html
mp3/
something.mp3
然后,您需要在目录树中指定与html文件位置相关的路径。
<audio src="mp3/something.mp3">
要明确:您无法使用网站上的“下载”中的mp3文件,您需要先将mp3放在服务器上。 (你实际上可以将它们放在一些免费服务上,比如Dropbox,并从你的网站链接到它们)。
祝你好运。答案 1 :(得分:0)
你可以使用很多东西。
<audio controls>
<source src="http://media.w3.org/2010/07/bunny/04-Death_Becomes_Fur.mp4"
type='audio/mp4'>
<!-- The next two lines are only executed if the browser doesn't support MP4 files -->
<source src="http://media.w3.org/2010/07/bunny/04-Death_Becomes_Fur.oga"
type='audio/ogg; codecs=vorbis'>
<!-- The next line will only be executed if the browser doesn't support the <audio> tag-->
<p>Your user agent does not support the HTML5 Audio element.</p>
</audio>
或者
<embed serc="YourMusic.mp3" autostart="true" loop="true" width="2" height="0">
</embed>