在ios中使用AVAudioPlayer和MPMusicPlayerController在歌曲播放列表中添加淡入淡出效果

时间:2012-12-14 04:34:22

标签: iphone ios

我需要在歌曲播放列表中添加淡入/淡出功能(播放列表歌曲从ipod库中回溯)。 当一首歌结束我需要淡出效果和下一首歌开始我需要淡出效果 在衰落的系统或媒体中,另一个人认为VOLUME不应该改变。

我正在使用MPMusicPlayerController播放歌曲。

2 个答案:

答案 0 :(得分:1)

这是我写的(前ARC)AVAudioPlayer的扩展,它完全符合您的要求。

标题AVAudioPlayer+FadeControl.h

#import <Foundation/Foundation.h>
#import <AVFoundation/AVFoundation.h>


@interface AVAudioPlayer (FadeControl)

-(void)fadeOutWithDuration:(NSTimeInterval)inFadeOutTime;

@end

来源AVAudioPlayer+FadeControl.m

#import "AVAudioPlayer+FadeControl.h"

#define     kFadeSteps  20.0

@implementation AVAudioPlayer (FadeControl)

-(void)fadeOutWithDuration:(NSTimeInterval)inFadeOutTime
{
    NSTimeInterval fireInterval = inFadeOutTime/kFadeSteps;
    float volumeDecrement = 1.0/kFadeSteps;
    float originalVolume = self.volume;

    self.volume = originalVolume - volumeDecrement;

    [self retain];
    [NSTimer scheduledTimerWithTimeInterval:fireInterval target:self selector:@selector(fadeOutTimerMethod:) userInfo:[NSNumber numberWithFloat:originalVolume] repeats:YES];

}

- (void)fadeOutTimerMethod:(NSTimer*)theTimer   
{
    float volumeDecrement = 1.0/kFadeSteps;

    if (self.volume > volumeDecrement)
    {
        self.volume = self.volume - volumeDecrement;
    }
    else if ( [theTimer isValid] )
    {
        [self stop];

        NSNumber* originalVolume = [theTimer userInfo];
        self.volume = [originalVolume floatValue];

        [theTimer invalidate];
    }
    else 
    {
        [self stop];
        [self release];
    }


}

@end

使用playWithFadeInDuration:方法广告应该是微不足道的。要在ARC项目中使用,只需将-fno-objc-arc添加到文件的编译标记中。

答案 1 :(得分:0)

-(void)doFadeInVolume { 

//play
[audioPlayerMain play];

if (audioPlayerMain.volume < 1.0) {
audioPlayerMain.volume = audioPlayerMain.volume + 0.1;
[self performSelector:@selector(doVolumeFadeMainIn) withObject:nil afterDelay:0.2];
} 
}

并且可以使用相反的方法来淡出音量。希望这会有所帮助。