0

我将 youtube 视频嵌入到 iframe 中。现在视频质量有 2 个设置:360p 和 240p。现在 Youtube 每次都选择 240 作为默认值,看起来很垃圾。在这种情况下,如何将默认质量更改为最高的 360p?

我尝试在视频链接末尾设置参数 ?hd=1 ,但它不起作用:像这样:

<iframe title="Evolution of 4 String Quartet on BBC" width="560" height="315" src="http://www.youtube.com/embed/D1GEH6VxQ-k?hd=1" frameborder="0" allowfullscreen></iframe> 

有任何想法吗?甚至可能吗?

我也玩过谷歌的这个开发者工具,顺便说一句,这很酷,但 380p 没有运气...... https://developers.google.com/youtube/youtube_player_demo

4

1 回答 1

0

您只想使用 vq 参数而不是 hd:

  <iframe title="Evolution of 4 String Quartet on BBC" width="560" height="315" src="http://www.youtube.com/embed/D1GEH6VxQ-k?vq=medium" frameborder="0" allowfullscreen></iframe>

vq 也可以是:小、大、hd720、hd1080。

于 2013-07-29T19:23:07.650 回答