博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 获取音频或是视频的时间
阅读量:5336 次
发布时间:2019-06-15

本文共 665 字,大约阅读时间需要 2 分钟。

AVURLAsset* audioAsset =[AVURLAssetURLAssetWithURL:audioFileURL options:nil];CMTime audioDuration = audioAsset.duration;float audioDurationSeconds =CMTimeGetSeconds(audioDuration);Note that AVFoundation is designed as a heavily asynchronous framework in order to improve performance and the overall user experience. Even performing simple tasks such as querying a media file's duration can take a long period of time which would cause your application to hang. You should use the  to asynchronously load the duration of the song, and then update your UI in the completion handler block.

版权声明:本文为博主原创文章,未经博主允许不得转载。

转载于:https://www.cnblogs.com/zsw-1993/p/4879554.html

你可能感兴趣的文章
pku 2195 Going Home 最小费最大流问题
查看>>
第四届ACM_DIY群程序设计竞赛 (部分解题报告) 弱菜在此大牛无视。。。
查看>>
通货膨胀 通货紧缩 贸易逆差
查看>>
第四章 Spring.Net 如何管理您的类___让对象了解自己的容器
查看>>
cocos creator制作微信小游戏
查看>>
JavaScript基础函数---李老师的
查看>>
Centos7之Nginx
查看>>
hdu 2121 , hdu 4009 无定根最小树形图
查看>>
Openwrt 安装软件到U盘或硬盘
查看>>
JDK部署
查看>>
Java循环结构第二讲
查看>>
Docker简介
查看>>
【BZOJ 4709】柠檬 斜率优化dp+单调栈
查看>>
Android Studio插件GsonFormat
查看>>
DS博客作业06--图
查看>>
python:requests模块
查看>>
js dom操作基本单词和格式
查看>>
GridView.ScrollIntoView() doesn't work
查看>>
通过案例快速学会Picasso图片缓存库
查看>>
Linux平台下快速搭建FTP服务器
查看>>