i have a problem with MPMoviePlayerController in iphone device.it playing in my iphone device without clarity(cant see the video content properly ) .However it playing in my simulator properly.can any one tell me a way to fix

link|improve this question

78% accept rate
You should try to explain the issue a little better. Maybe a screenshot will help? – Till May 27 '11 at 22:06
feedback

1 Answer

Use this code

NSString *filepath = [[NSBundle mainBundle] pathForResource:@"aaa" ofType:@"mp4"];  
NSURL *fileURL = [NSURL fileURLWithPath:filepath];  
MPMoviePlayerController *moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:fileURL]; 
[moviePlayerController.view setFrame:CGRectMake(0, 70, 320, 270)]; 
[self.view addSubview:moviePlayerController.view];  
moviePlayerController.fullscreen = YES;  
[moviePlayerController play];

If you find useful then upvote and mark as right.....

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.