I want to play video using MPMoviePlayerController but I want it to ignore the mute switch, similar to the behavior of youtube video player.

any ideas?

thank -Z

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

Use the AVAudioSession category AVAudioSessionCategoryPlayback and your app will ignore the mute switch like the youtube app.

link|improve this answer
More specifically <code> NSError* error; [[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error: &error]; if( error ) { } </code> – Ken Pletzer Apr 10 at 13:44
Also need to add AVFoundation framework and #import "AVFoundation/AVAudioSession.h" – Ken Pletzer Apr 10 at 14:11
feedback
_player.useApplicationAudioSession = NO;
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.