assetURL = [item valueForProperty: MPMediaItemPropertyAssetURL];
NSLog(@"%@", assetURL); // asset url declares the song url and song path
AVURLAsset* audioAsset = [AVURLAsset URLAssetWithURL:assetURL options:nil]; // declare the audio asset url
CMTime audioDuration = audioAsset.duration; // get duration in cm time
double audioDurationSeconds = CMTimeGetSeconds(audioDuration); // convert audio duration in double
但这是一个问题,因为我只在几秒钟内获得音频持续时间,但我需要" MM:SS"歌曲持续时间的格式。
请帮帮我。提前谢谢。
答案 0 :(得分:0)
use alexBond\thumbler\Thumbler;