Check the last line
useApplicationAudioSession
A Boolean value that indicates whether the video player should use an application audio session.
@property (nonatomic) BOOL useApplicationAudioSession
Discussion
The default value of this property is YES. Setting this property to NO forces the player to use audio sessions with the system in an immiscible playback category.
Important: in iOS 3.1 and earlier, the movie player always uses the included audio sessions. To get the same behavior in iOS 3.2 and later, you must set this value to the NO property.
When this property is YES, the movie player shares the sound of the application session. This gives you control over how movie content interacts with your audio and audio from other applications such as iPod. For important guidance on using this, see "Working with Movies and iPod Music" in the audio session of the Programming Guide.
Changing the value of this property does not affect the currently playing movie. To re-configure the effect, you must stop playback and then start it again.
[[MPMusicPlayerController applicationMusicPlayer] setVolume:(use a value between 0.0 and 1.0)]
If your MPMoviePlayerController uses an audio application session, this should adjust the volume. But be careful when using this. This is work around
visakh7 May 03 '11 at 9:17 a.m. 2011-05-03 09:17
source share