AVPlayer And Local Files

后端 未结 6 1582
名媛妹妹
名媛妹妹 2020-12-01 03:21

I am building a MP3 player for iOS that plays audio files hosted on the web. I want to offer the ability to play the files offline so I have the files downloading using ASIH

6条回答
  •  -上瘾入骨i
    2020-12-01 03:35

    I got AVPlayer to work with local URL by prepending file:// to my local url

    NSURL * localURL = [NSURL URLWithString:[@"file://" stringByAppendingString:YOUR_LOCAL_URL]];
    AVPlayer * player = [[AVPlayer alloc] initWithURL:localURL];
    

提交回复
热议问题