I'm currently trying to play music from a phones local iPod library using AVPlayer rather than MPMusicPlayerController using the application controller.

I can get it select a track from the local iPod lib using and MPMediaQuery, but when I try to start the audio at a lower level using AVMutableAudioMixInputParameters, it doesn't seem to lower the volume at all.

The reason I'm using AVPlayer and not MPMusicPlayerController is that I'm playing some other audio in the background at the same time and MPMusicPlayerController fails to play as an existing audio file using AVPlayer is hogging the hardware. The code I have at the moment is:

// just blindly select all music for now.
MPMediaQuery *everything = [[MPMediaQuery alloc] init];

NSArray *itemsFromGenericQuery = [everything items];
MPMediaItem *song;
NSMutableArray *array = [[NSMutableArray alloc] init];

for (song in itemsFromGenericQuery) 
{
    [array addObject:song];
}

So at this point array is an array of tracks from my lib.

Now to grab one and play it using AVPlayer:

// grab the first song off the array
MPMediaItem *song = [array objectAtIndex:0];
NSURL *assetURL = [song valueForProperty:MPMediaItemPropertyAssetURL];
AVURLAsset *asset = [AVURLAsset URLAssetWithURL:assetURL options:nil];

NSArray *audioTracks = [asset tracksWithMediaType:AVMediaTypeAudio];
AVAssetTrack *track = [audioTracks objectAtIndex:0];

NSMutableArray *allAudioParams = [NSMutableArray array];
AVMutableAudioMixInputParameters *audioInputParams = 
        [AVMutableAudioMixInputParameters audioMixInputParameters];

// this is the key line - turn the volume down.
[audioInputParams setVolume:0.3 atTime:kCMTimeZero];
[audioInputParams setTrackID:[track trackID]];
[allAudioParams addObject:audioInputParams];

AVMutableAudioMix *audioZeroMix = [AVMutableAudioMix audioMix];
[audioZeroMix setInputParameters:allAudioParams];

// Create a player item
AVPlayerItem *playerItem = [AVPlayerItem playerItemWithAsset:asset];

[playerItem setAudioMix:audioZeroMix];
[playerItem seekToTime:CMTimeMake(30, 1)];

[self setLocalPlayer:[AVPlayer playerWithPlayerItem:playerItem]];
[localPlayer play];

I can confirm that adjusting the volume works when using AVPlayer to play files from a URL (streaming); just not when playing from the local library.

I realise I haven't done any memory management here; just trying to get it working first. Also, local player is a property so there is no explicit retain.

Any help would be greatly appreciated!

Thanks.

link|improve this question

80% accept rate
I'm not an iPhone developer, but isn't that function's name ... a bit too long? – aviraldg Jan 25 '11 at 1:15
heh, it is a bit - but its a stdlib lib/function. – Ben Novakovic Jan 25 '11 at 1:29
Did you manage to find the solution .. ? – Aatish Molasi May 3 at 9:49
feedback

2 Answers

Did you really success to adjust volume for a streaming avplayer ? With the same code as above ?

link|improve this answer
still no luck.. – Ben Novakovic Jan 27 '11 at 0:16
feedback

Have you tried replacing kCMTimeZero with CMTimeMakeWithSeconds(0,1), or simply 0?

If that still fails, try the fade in/out effect and set the start time and end time to 0.

link|improve this answer
neither work :( – Ben Novakovic Jan 27 '11 at 10:39
feedback

Your Answer

 
or
required, but never shown

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