0

Anybody know how to expose the iPhone music library using a http server on iOS? How do I get the path to the music files on the iPhone?

user426132
  • 1,341
  • 4
  • 13
  • 28

1 Answers1

0

You can do something like :

MPMediaItem *item = musicPlayer.nowPlayingItem;
AVURLAsset *song_asset = [AVURLAsset URLAssetWithURL: [item valueForProperty: MPMediaItemPropertyAssetURL] options:nil];
Munahil
  • 2,381
  • 1
  • 14
  • 24