gpt4 book ai didi

ios - 在 Swift 中使用 AVPlayer。 iPhone 上没有错误,但没有声音

转载 作者:行者123 更新时间:2023-11-30 13:02:53 25 4
gpt4 key购买 nike

在 Swift 中使用 AVPlayer。没有错误,但 iPhone 上没有声音。

我是 Swift 新手。我将不胜感激。

这是我的代码:

import UIKit
import AVFoundation

class PlayerViewController: UIViewController {
// This time, we'll declare avPlayer as an instance variable,
// which means it exists as long as our view controller exists.
var avPlayer: AVPlayer!

override func viewDidLoad() {
super.viewDidLoad()

print("Connecting...")

// If you'd rather not use this sound file,
// replace the string below with the URL of some other MP3.
let urlString = "http://live.canstream.co.uk:8000/bangradio.mp3"
let url = NSURL(string: urlString)!
avPlayer = AVPlayer(URL: url)

print("Connected to One Radio!")
avPlayer.play()
print("Now playing...")
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}

最佳答案

您可以尝试使用 AVPlayerItem(url:"your url"),并设置到 avplayer 中。

关于ios - 在 Swift 中使用 AVPlayer。 iPhone 上没有错误,但没有声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39728451/

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