What is the easiest way to get a duration of an audio file?
I could create an object of AVAudioPlayer, initialize it with URL and than get the duration, but this way is too long. Is there an easier way?
Thanks.
What is the easiest way to get a duration of an audio file?
I could create an object of AVAudioPlayer, initialize it with URL and than get the duration, but this way is too long. Is there an easier way?
Thanks.
In case anyone lands here looking for a way to get the duration for both audio and video files, have a look at this answer to another post, which instead uses
AVAsset
instead:https://stackoverflow.com/a/7052147/381233
Using
AudioFileGetProperty
(like the other two main answers here) to get the duration of A/V files didn't work for a few .mov files on my device (result was always 0), while the solution usingAVAsset
got the duration for all audio and video files on my device.(Interestingly enough, however, the duration from both solutions was sometimes 1 second more than that displayed in the UI of an actual
AVAudioPlayer
. Most likely theAVAudioPlayer
uses a non-standard rounding routine for the displayed duration.)Correct code is
outDataSize should be Float64 not UInt64.