Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to embed a youtube video in my app. It works fine but starts in portrait and will not rotate to landscape (making the video kind of small).

I'm doing all this in a UIWebView with the size of 237x353 The containing viewcontroller should only work in portrait (does this affect the issue). I've read that embedded youtube videos automagically starts in a MPMoviePlayerController so I'm guessing it can control orientation on it's own?

Any clues on why it will not start in landscape?

share|improve this question

1 Answer

up vote 3 down vote accepted

Never mind. I figured the problmed lies in using the tag suggested by YouTube. This always made my video show i portrait. If your underlying viewcontroller only supports portrait thats what you gonna get. You are better of using:

<embed id="yt" src="http://www.youtube.com/watch?v=ZflCTKggPAQ" type="application/x-shockwave-flash" width="237" height="250"></embed>

Also what made this even harder to debug is the fact that the above code will not work in simulator whereas the "iframe" does. With the above code + device all is golden.

share|improve this answer
Thanks! This answer has been very helpful :) – Robert Jan 26 '11 at 10:17
Happy I helped someone :) – sebrock Jun 25 '11 at 15:31
I don't understand -- what is the fix? (I have the reverse problem -- I'm launching YouTube from a UIWebView and it always comes up in landscape mode.) – David Moles Jun 29 '11 at 16:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.