gpt4 book ai didi

ios - 远程 mp3 文件需要花费大量时间在 swift ios 中播放

转载 作者:可可西里 更新时间:2023-11-01 00:53:37 28 4
gpt4 key购买 nike

我有麻烦了。我想在我的应用程序中播放远程 mp3 文件。但是 mp3 文件需要很长时间(大约 5-6 分钟)才能播放。为什么 ?

任何人都可以建议我应该怎么做?

 import UIKit

import AVFoundation

class TestViewController: UIViewController, AVAudioPlayerDelegate {

var player:AVAudioPlayer = AVAudioPlayer()

override func viewDidLoad() {
super.viewDidLoad()
}

@IBAction func play(sender: AnyObject) {

let url = "http://www.example.com/song.mp3"

let fileURL = NSURL(string: url.stringByAddingPercentEncodingWithAllowedCharacters(NSCharacterSet.URLQueryAllowedCharacterSet()))

let soundData = NSData.dataWithContentsOfURL(fileURL, options: nil, error: nil)

var error: NSError?
self.player = AVAudioPlayer(data: soundData, error: &error)
if player == nil
{
if let e = error
{
println(e.localizedDescription)
}
}

player.volume = 1.0
player.delegate = self
player.prepareToPlay()

player.play()

}

}

提前致谢。

最佳答案

使用 AVPlayer 而不是 AVAudioPlayer 来播放流式音频。可以这么简单——

let urlString = "http://www.example.com/song.mp3"
let url = NSURL(string: urlString)

var avPlayer = AVPlayer(URL: url)
avPlayer.play()

您还可以在 AVPlayer.status 属性上设置一个观察者来管理其不断变化的状态。查看: https://stackoverflow.com/a/13156942/2484290 ( objective-c )

当然,AVPlayer 文档在这里: https://developer.apple.com/LIBRARY/ios/documentation/AVFoundation/Reference/AVPlayer_Class/index.html#//apple_ref/occ/cl/AVPlayer

关于ios - 远程 mp3 文件需要花费大量时间在 swift ios 中播放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27066772/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com