durCurrently 我正在使用 iPhone 应用程序,AVAudioPlayer
用于在我的应用程序中播放音频文件,然后从AVAudioPlayer
.
我得到的持续时间值如下:252.765442。
但我想要HH/MM/SS 02:52:76
。
这个怎么转换,求大神帮忙
提前致谢..
我试过这个:
audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:tempFilePath] error:&err];
[audioPlayer setDelegate:self];
[audioPlayer prepareToPlay];
float duration = (float)audioPlayer.duration;
NSLog(@"duration:%f",duration);