I have a video embedded on my website using swfobject method. The player is without options on my page, just a video. The user cannot adjust the quality of the video. I want it to show as HD as standard. Problem being it refuses to do so at the current embed size of "1000"x"562". I came across the following explanation:

[The iframe embed] will attempt to "optimize" the experience and will work off of the dimensions of the embed player to choose what quality to play it back at by default.

If the embed is much smaller than 1280x750, such as 853x510 or 640x390, it will play 480p or 360p, regardless of whether the &hd=1 parameter is set.

Is there any way around this? It would look a lot better in HD given the fairly large size. The only thing I can think of is to show the video in a modal popup instead of on the page. I can therefore have it displayed a lot larger, that isn't really what I want though.

My code:

var params = { allowScriptAccess: "always", wmode: "opaque" };
    var atts = { id: "ytPlayer" };
   swfobject.embedSWF("http://www.youtube.com/e/PoTa2FTmDWk?      enablejsapi=1&playerapiid=player1;HD=1;rel=0;showinfo=0;controls=0","ytapiplayer", "1000", "562", "8", null, null, params, atts);
link|improve this question

50% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.