我使用 AVAudioPlayer 播放音频文件,使用 UISlider 显示用户当前时间。首先,它看起来一切正常,但我注意到音频播放器返回错误的文件持续时间。例如,它返回我的持续时间等于 3.5 秒,但文件持续时间等于 6 秒。在现实中。
你知道什么会导致这个问题吗?
下面你可以看到我的代码返回文件持续时间:
- (NSTimeInterval)audioDurationAtURLNSURL *)url
{
NSError *error;
NSData *data = [NSData dataWithContentsOfURL:url];
_audioPlayer = [[AVAudioPlayer alloc] initWithData:data error:&error];
return _audioPlayer.duration;
}
Best Answer-推荐答案 strong>
为了给 TonyMkenu 的答案增加一点,AVAsset 是一种替代方案,能够为您提供更准确的持续时间。
https://developer.apple.com/library/mac/documentation/AVFoundation/Reference/AVAsset_Class/Reference/Reference.html#//apple_ref/occ/instp/AVAsset/duration
如果您指定 providesPreciseDurationAndTiming = YES,那么 AVAsset 将在需要时解码文件以确定其准确的持续时间。如果解码时间对您的使用来说太长,您可以禁用它。
在我的情况下,我使用 AVURLAsset 子类:
AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:localURL options:[NSDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithBool:YES], AVURLAssetPreferPreciseDurationAndTimingKey, nil]];
float t = CMTimeGetSeconds(asset.duration);
关于ios - AVAudioPlayer 返回错误的文件持续时间,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/23606998/
|