iOS专攻资源__面试专题iOS DeveloperiOS Dev.

iOS 问答集 - 第一期

2017-02-21  本文已影响300人  酷酷的哀殿

首发地址:https://github.com/sunbohong/iOS-question-set

通过 po/x 32 即可显示变量的二进制内容。

扩展阅读:http://lldb.llvm.org/lldb-gdb.html


AVURLAsset  *audioAsset =[AVURLAsset URLAssetWithURL:[NSURL fileURLWithPath:urlStr] options:nil];

CMTime audioDuration = audioAsset.duration;

float audioDurationSeconds =CMTimeGetSeconds(audioDuration);

NSLog(@"播放   大小-== %f M   长度:   %f  地址: %@",Byte/1024.0/1024.0,audioDurationSeconds,urlStr);

答案: AV 库的很多内容是经过充分优化的(懒加载)。如果需要获取准确的音频时长,需要通过以下代码读取。


NSArray *keys = @[@"duration"];

AVURLAsset  *audioAsset =[AVURLAsset URLAssetWithURL:[NSURL fileURLWithPath:urlStr] options:@{AVURLAssetPreferPreciseDurationAndTimingKey:@YES}];

    [audioAsset loadValuesAsynchronouslyForKeys:keys completionHandler:^{

        CMTime audioDuration = audioAsset.duration;

        float audioDurationSeconds =CMTimeGetSeconds(audioDuration);

        NSLog(@"播放   大小-== %f M   长度:   %f  地址 :%@",Byte/1024.0/1024.0,audioDurationSeconds,urlStr);

    }];

上一篇 下一篇

猜你喜欢

热点阅读