如何将来自youtube的视频嵌入到玉文件中?

时间:2015-06-17 21:32:27

标签: pug

如何将来自youtube的视频嵌入到玉文件中?

我找到了如何嵌入图像,我尝试做类似的事情

video(width='320', height='240', controls='controls')
        source(src='https://www.youtube.com/embed/Iy3xURDGZd0?list=PLkzo92owKnVwnV5o1psI7XSA-AquO9_9g', type='video/mp4', id='theVideo')

但这不起作用。

1 个答案:

答案 0 :(得分:2)

<video>代码需要直接链接到视频流(.mp4 / .ogv),对于Youtube视频而言,您无法轻易获得或合法使用你的网站。

Youtube仅允许其视频通过以下某些方式嵌入其他网页:https://developers.google.com/youtube

基本上使用iframe:

iframe(type='text/html' width='640' height='390'
    src='http://www.youtube.com/embed/M7lc1UVf-VE?autoplay=1&origin=http://example.com'
    frameborder='0')

或通过其Javascript API。

相关问题