amr 音频文件的持续时间
我想查找“amr”类型的音频文件的持续时间,而不将其转换为其他音频格式 有什么办法吗?
AK
i want to find the duration of an audio file of type "amr" without converting it to other audio formats
with any way?
AK
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 Objective-C 中编写了以下代码来获取电影的时长。这也可以类似地用于获取音频的持续时间:
将 CODEC_TYPE_VIDEO 更改为 CODEC_TYPE_AUDIO ,我认为它应该适合您。
I have coded the following in objective-C to get the duration of a movie. This can similarly be used to get the duration of audio too:
Change the
CODEC_TYPE_VIDEO
toCODEC_TYPE_AUDIO
and I think it should work for you.