iPhone song lyrics access

后端 未结 1 616
抹茶落季
抹茶落季 2020-12-30 17:37

I\'m trying to get the lyrics for a song on an iOS device and the examples I\'ve found on the web and stackoverflow show getting the song\'s MPMediaItem (i.e. using a [MPMed

相关标签:
1条回答
  • 2020-12-30 18:13

    Solved: The following approach gets around the problem and song lyrics always show up.

    NSURL* songURL = [mediaItem valueForProperty:MPMediaItemPropertyAssetURL] 
    AVAsset* songAsset = [AVURLAsset URLAssetWithURL:songURL options:nil]; 
    NSString* lyrics = [songAsset lyrics];
    
    0 讨论(0)
提交回复
热议问题