如何获取使用MPMusicPlayerController播放的播放歌曲的剩余时间?

时间:2014-05-19 10:13:35

标签: ios mpmusicplayercontroller

我想在我的应用中显示播放歌曲的剩余时间,我的代码:

NSTimeInterval currentTime= musicPlayer.currentPlaybackTime; 
NSNumber *duration = [musicPlayer.nowPlayingItem valueForProperty:MPMediaItemPropertyPlaybackDuration]; 
NSLog(@"Current Playback Time: %f",currentTime);

2 个答案:

答案 0 :(得分:5)

如果您想重现音乐应用中显示的时间:

double nowPlayingItemDuration = [[[musicPlayer nowPlayingItem] valueForProperty:MPMediaItemPropertyPlaybackDuration]doubleValue];
double currentTime = (double) [musicPlayer currentPlaybackTime];
double remainingTime = nowPlayingItemDuration - currentTime;

NSString *timeElapsed;
NSString *timeRemaining;

if (nowPlayingItemDuration >= 3600.0) {
    timeElapsed = [NSString stringWithFormat: @"%02d:%02d:%02d",
                           (int)currentTime/3600,
                           (int) (currentTime/60)%60,
                           (int) currentTime%60];
    timeRemaining = [NSString stringWithFormat:@"- %02d:%02d:%02d",
                             (int)remainingTime/3600,
                             (int) (remainingTime/60)%60,
                             (int) remainingTime%60];

} else {
    timeElapsed = [NSString stringWithFormat: @"%02d:%02d",
                           (int) currentTime/60,
                           (int) currentTime%60];
    timeRemaining = [NSString stringWithFormat:@"- %02d:%02d",
                             (int) remainingTime/60,
                             (int) remainingTime%60];
}

答案 1 :(得分:0)

  • 如果您想在进度视图中显示,请按照以下代码进行操作。它会对您有帮助。
 MPMediaItem *temp;
    NSTimeInterval trackLength = [[temp valueForProperty:MPMediaItemPropertyPlaybackDuration] doubleValue];
    song.songDuration = [temp valueForProperty:MPMediaItemPropertyPlaybackDuration];
NSTimer *timer= [NSTimer scheduledTimerWithTimeInterval:1
                                                target:self
                                              selector:@selector(updateProgress)
                                              userInfo:nil
                                               repeats:YES];

-(void) updateProgress{
itemDur++;
        WASong *song = [self.songObjects objectAtIndex:self.cellIndexPath.row];

        CGFloat progress =itemDur/[song.songDuration doubleValue];

}