0

I want to extract album name, artist name, cover art, and duration from a song using AVURLAsset in iOS 8.1.

So far I have:

NSURL *url = [NSURL URLWithString:[strSongPath stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
AVURLAsset* audioAsset = [AVURLAsset URLAssetWithURL:url options:nil];

What are the details to put in after this?

Anthon
  • 69,918
  • 32
  • 186
  • 246
IRD
  • 1,127
  • 2
  • 8
  • 15

1 Answers1

0

Did you already checked audioAsset.commonMetadata ?

This property will return an array of all available AVMetaDataItem objects for your initialized asset.

Each item is representing exactly one available metadata property of your asset

HorseT
  • 6,592
  • 2
  • 18
  • 16