如何在Swift中使用AVPlayer在iOS中播放带有Cookie内容的视频? [英] How to play video with cookies content in iOS using AVPlayer in Swift?

查看:79
本文介绍了如何在Swift中使用AVPlayer在iOS中播放带有Cookie内容的视频?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已使用以下实现从服务器播放包含cookie内容的视频,但该视频显示带有交叉线的播放图标.我已经引用了链接,并执行以下操作快速实施.但我没有得到任何输出:(

I have used the below implementation to play a video with cookies content from the server, but it shows play icon with cross line. I have refer the link and do following implementation in swift. but I didn't get any output :(

func showVideo(url: String) {
  let videoURL = NSURL(string: url)
  var cookiesArray = [HTTPCookie]()
  guard let cookieArray = UserDefaults.standard.array(forKey: 
  Constants.Object.kCookie) as? [[HTTPCookiePropertyKey: Any]] else { 
  return }

  for cookieProperties in cookieArray {
    if let cookie = HTTPCookie(properties: cookieProperties) {
      cookiesArray.append(cookie)
    }
  } 
  let cookieArrayOptions = [AVURLAssetHTTPCookiesKey: cookiesArray]
  let assets = AVURLAsset(url: videoURL! as URL, options: cookieArrayOptions)
  let item = AVPlayerItem(asset: assets)
  videoPlayer = AVPlayer(playerItem: item)

  self.playerController.player =  self.videoPlayer 
  self.playerController.view.frame = self.view.frame
  self.present(self.playerController, animated: true, completion: nil)
  self.playerController.player?.play()
 }

请帮助我,该实现有什么问题.

Please help me on that, what is wrong in that implementation.

提前谢谢! :)

推荐答案

在经历了很多方式之后,我终于找到了适合我的解决方案:

After going through so many ways finally I have got the solution which worked for me :

     func showVideo(url: String) {
      let videoURL = NSURL(string: url)
      let cookiesArray = HTTPCookieStorage.shared.cookies! //Stored Cookies of your request
      let values = HTTPCookie.requestHeaderFields(with: cookiesArray)// Returns a dictionary of header fields corresponding to a provided array of cookies.ex.["Cookie":"your cookies values"]
      let cookieArrayOptions = ["AVURLAssetHTTPHeaderFieldsKey": values]
      let assets = AVURLAsset(url: videoURL! as URL, options: cookieArrayOptions)
      let item = AVPlayerItem(asset: assets)
      videoPlayer = AVPlayer(playerItem: item)

      self.playerController.player =  self.videoPlayer 
      self.playerController.view.frame = self.view.frame
      self.present(self.playerController, animated: true, completion: nil)
      self.playerController.player?.play()
     }

这篇关于如何在Swift中使用AVPlayer在iOS中播放带有Cookie内容的视频?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆