我想获取本地 iTunes 歌曲的 ISRC 代码。我可以通过以下代码获取元数据:
MPMusicPlayerController *mp= mp = [MPMusicPlayerController applicationMusicPlayer];
NSURL *assetURL = [mp.nowPlayingItem valueForProperty:MPMediaItemPropertyAssetURL];
AVAsset *asset = [AVAsset assetWithURL:assetURL];
NSArray *metadata = [asset commonMetadata];
for ( AVMetadataItem* item in metadata ) {
NSString *key = [item commonKey];
NSString *value = [item stringValue];
NSLog(@"extra iptions %@",[item extraAttributes]);
NSLog(@"key = %@, value = %@", key, value);
NSLog(@"keyspace and Local %@ %@",[item keySpace],[item key]);
}
但我真的很想知道如何获得 ISRC(国际标准记录编码)。