您的当前位置:首页正文

计算音频长度

来源:华佗小知识
// 耗时操作, 在主线程

AVURLAsset *avUrl = [AVURLAsset assetWithURL:[NSURL URLWithString:bodiesModel.url]];

CMTime time = [avUrl duration];

int seconds = ceil(time.value/time.timescale);

在工程中连接CoreMedia和AVFoundation框架