oOOMIAO 2012-11-07 09:10 采纳率: 10%
浏览 6700
已采纳

如何从 AVAudioPlayer中获取duration 持续时间 (HH:MM:SS)

在iPhone应用里用到AVAudioPlayer播放音频文件。然后从AVAudioPlayer 中获取持续时间

我获得的duration值是这样的: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);
  • 写回答

1条回答 默认 最新

  • vikeyToy 2012-11-07 09:27
    关注

    试试看:

    NSTimeInterval theTimeInterval = audioPlayer.duration;
     // 获取system calendar
    NSCalendar *sysCalendar = [NSCalendar currentCalendar];
    
    // 创建NSDates
    NSDate *date1 = [[NSDate alloc] init];
    NSDate *date2 = [[NSDate alloc] initWithTimeInterval:theTimeInterval sinceDate:date1];
    // 转换到小时、分钟
    unsigned int unitFlags = NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;
    NSDateComponents *breakdownInfo = [sysCalendar components:unitFlags fromDate:date1  toDate:date2  options:0];
    NSLog(@"Duration: HH/MM/SS %d:%d:%d", [breakdownInfo hour], [breakdownInfo minute], [breakdownInfo second]);
    [date1 release];
    [date2 release];
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料