gpt4 book ai didi

ios - 使用本地 url 通过 iOS 应用程序进行 ChromeCast 视频(错误)

转载 作者:行者123 更新时间:2023-11-30 10:59:48 28 4
gpt4 key购买 nike

我正在尝试使用 Chromecast 播放我的本地 url 视频。我不熟悉如何实现,下面是尝试过的代码,我找不到太多库来使用本地 url 执行 Chromecast 并通过远程控制手机(播放/停止)来播放视频。如果有人知道可以指导好的库或建议代码。请..

override func viewDidLoad() {
super.viewDidLoad()
let castButton = GCKUICastButton(frame: CGRect(x: 0, y: 0, width: 24, height: 24))
castButton.tintColor = UIColor.red
let castBarButtonItem = UIBarButtonItem(customView: castButton)
navigationItem.rightBarButtonItem = castBarButtonItem
Casty.shared.initialize()
let url: String = "https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/mp4/DesigningForGoogleCast.mp4"
let subtitleURL = "https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/tracks/DesigningForGoogleCast-en.vtt"
let subtitle = GCKMediaTrack(identifier: 1, contentIdentifier: subtitleURL , contentType: "text/vtt", type: GCKMediaTrackType.text, textSubtype: GCKMediaTextTrackSubtype.captions, name: "English", languageCode: "en", customData: nil)

//this image will show up in expanded controller as well as video thumb
let image = GCKImage(url: URL(string: "https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/images/780x1200/DesigningForGoogleCast-887x1200.jpg")!, width: 780, height: 1200)

Casty.didStartSession = { _ in
Casty.shared.loadMedia(url: self.url , subtitles: [subtitle] , activeSubtitleID: 1 , title: "Dev" , image: image)
Casty.shared.presentExpandedController()
Casty.shared.addMiniController(toParentViewController: self)
}}

最佳答案

Cast 媒体播放器仅支持通过 HTTP 进行播放。因此,您需要有一个本地网络服务器,以允许播放器访问您的本地内容。

关于ios - 使用本地 url 通过 iOS 应用程序进行 ChromeCast 视频(错误),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53515828/

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