2012-12-14 44 views
0

我將youtube視頻嵌入到iframe中。現在視頻質量有2個設置:360p和240p。現在Youtube每次都選擇240作爲默認值,它看起來很糟糕。在這種情況下,如何將默認質量更改爲最高可能的360p?將iframe中的視頻質量更改爲其他設置

我試着設置參數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> 

任何想法?它甚至有可能嗎?

我也與谷歌在開發工具,這是相當酷的BTW,但與380P沒有運氣發揮各地... https://developers.google.com/youtube/youtube_player_demo

回答

0

你只是想用VQ參數,而不是高清的:

<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。

相關問題