i used all the examples and source code out there for displaying application content to external VGA display. while playing video in inside of the application am getting bellow thing in external device. any suggestion.... am i missing somthing.. but in device it showing actual window in fine way..

link|improve this question

60% accept rate
And I almost lolled. :-P You need to actually ask something for anybody to answer. Pretty picture though! – Amigable Clark Kant Jan 24 '11 at 10:56
@Amigable He did ask something - the question was just malformed so the question ended up as the alt text. – middaparka Jan 24 '11 at 11:01
Thanks @middaparka – Amigable Clark Kant Jan 24 '11 at 11:04
Am I getting this right, your iPhone shows the video, but your TV shows that pretty image? – Amigable Clark Kant Jan 24 '11 at 11:05
1  
You've got your code the wrong way around. You should be pushing the view that you want on your TV... To the TV. The view for the iPhone should be left as is. Just swap it around and you should be set. – Aurum Aquila Jan 24 '11 at 12:32
show 6 more comments
feedback

2 Answers

up vote 1 down vote accepted

Hello All here am answering to my own question.

robterrell's TVOutManager will not play any video to external device by simply doing [[TvOutManager sharedinstance] startTvOut] and [[TvOutManager sharedinstance]s topTVOut];

here we have add the instance of player to tvoutWindow. [tvoutWindow addSubview:player's instance];

but here thing is the video is not displayed in device, but you can control external window player from device.

cheers.

link|improve this answer
feedback

enter image description here

   NSString *url = [[NSBundle mainBundle] pathForResource:@"Overview" ofType:@"mov"];

    player = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL fileURLWithPath:url]];

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(movieFinishedCallback:)name:MPMoviePlayerPlaybackDidFinishNotification object:player];

        //---play partial screen---
    player.view.frame = CGRectMake(35, 450, 430, 300);
    [self.view addSubview:player.view];

    [player play];  

    - (void) movieFinishedCallback:(NSNotification*) aNotification {

    [[TVOutManager sharedInstance] startTVOut];
    player = [aNotification object];
    [[NSNotificationCenter defaultCenter] 
     removeObserver:self
     name:MPMoviePlayerPlaybackDidFinishNotification
     object:player];
    [player stop];

}

this the code am added in mainviewController class in robterrell's TVOutManager sample application. after connecting device into external device. while switching mirror video on am not getting anything..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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