インターネットから mp3 ファイルの長さを取得したいので、次のコードを使用します。
NSURL *url = [NSURL fileURLWithPath:@"http://view.33591.com:586/2012/11/30/11/4207369.mp3"];
AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:url
options:nil];
CMTime time = asset.duration;
float seconds = CMTimeGetSeconds(time);
NSLog(@"seconds:%f",seconds);
しかし、バンドルからローカルファイルにURLを変更すると、常に0が返されます.それを正しく行う方法はありますか?