Is it possible to play Apple Music files - even the "available offline" ones - using AVPlayer? I tried the following code to get the url, but it returns nil:
- (void)mediaPicker:(MPMediaPickerController *)mediaPicker didPickMediaItems:(MPMediaItemCollection *)mediaItemCollection{ [mediaPicker dismissViewControllerAnimated:YES completion:nil]; NSURL *thisURL=[[[mediaItemCollection items] firstObject] valueForProperty:MPMediaItemPropertyAssetURL]; ...
Thank you for reading.
EDIT: Discussions on the Apple Developers Forum suggest that this might not be possible if AVPlayer is not used. But then it prevents sound processing, so this is not an option, unfortunately.
source share