0

我想问你如何编写基于 youtube 视频的 html 音频(媒体)播放器。因此,您获得 youtube 视频 URL 并将其作为音频媒体播放器(无视频)添加到您的网站。谢谢。祝你今天过得愉快

4

1 回答 1

0

一点谷歌搜索总是有帮助的!有用的链接

使用这个网站会产生以下代码:

<div style="position:relative;width:267px;height:25px;overflow:hidden;">
    <div style="position:absolute;top:-276px;left:-5px">
        <iframe width="300" height="300" src="https://www.youtube.com/embed/YOUTUBE_VIDEO_ID?rel=0&autoplay=1"></iframe>
    </div>
</div>

如果您不希望您的音频自动播放,只需&autoplay=1src.iframe

于 2013-08-08T13:13:23.210 回答