Is it possible to play Apple Music files—even the "available offline" ones—with AVPlayer? I've tried the following code to retrieve 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];
...
Thanks for reading.
EDIT: Discussions on the Apple Developer forum suggest this may not be possible, unless AVPlayer is not used. But then that prevents audio processing, so not an option unfortunately.