0
私はライブ放送/ストリーミングビデオをiosで再生したいです。私はAsyncDisplayKitを使用しようとしていますが、ビデオは再生されていません。これのためのライブラリはありますか?ライブ中継news - swift 3
DispatchQueue.global(qos: DispatchQoS.QoSClass.background).async(execute: {
if self.mainNode == nil {
self.mainNode = ASDisplayNode()
self.videoNode = ASVideoNode()
self.videoNode!.frame = CGRect(x: 0.0, y: 0.0, width: self.bounds.width, height: self.bounds.height)
self.videoNode!.gravity = AVLayerVideoGravityResizeAspectFill
self.videoNode!.shouldAutoplay = true
self.videoNode!.shouldAutorepeat = false
self.videoNode!.muted = false
self.videoNode.delegate = self
self.videoNode.isUserInteractionEnabled = true
self.videoNode!.placeholderEnabled = true
DispatchQueue.main.async(execute: {
self.mainNode!.addSubnode(self.videoNode!)
self.addSubview(self.mainNode!.view)
})
}
self.videoNode?.asset = AVAsset(url: self.url)
DispatchQueue.main.async(execute: {
self.videoNode?.placeholderImage()
})
})
それは文句を言わないのURLからhttps://bmplayer-a.akamaihd.net/shareable/embedssl.html?dc=cp24_web&cid=982467&col=379&w=960&h=540&pl=0&plh=0&adSiteを果たしています= ctv.cp24&adZone = default&omniAcct = ctvgmtvecp24desktop、ctvgmtvecp24globalsuite&section = CP24&site = cp24&shareUrl = http://www.cp24.com/&v7=home&v8=&v9=&v10= –