0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PHAssetから動画データを取り出して再生する

Posted at

はじめに

今回の記事ではPhotoKitを使って取得したPHAssetオブジェクトより動画データを取り出し、再生する方法について紹介します。
ざっくりとした手順は次のような感じです!

  1. PhotoKitを使ってPhoto Libraryよりアセットデータを取り出す
  2. PHImageManagerを使って動画データを取り出す
  3. 取り出した動画データをAVPlayerLayerに設定する

完成イメージは次のような感じです!

全体のソースコードは次です!
https://github.com/h-taro/PhotoApp/tree/fce3da609fc8ded949d09b9cc77639b47d0f3720

環境

Xcode 12.5.1
Swift 5.4.2
macOS Big Sur 11.5.2

具体的な実装方法

今回の肝となる箇所は次のコードです!

AssetViewController.swift
@IBAction func playVideo(_ sender: Any) {
    if playerLayer != nil {
      playerLayer?.player?.play()
    } else {
      let options = PHVideoRequestOptions()
      options.deliveryMode = .automatic
      PHImageManager.default().requestPlayerItem(forVideo: asset, options: options) { playerItem, _ in
        guard let playerItem = playerItem else {
          fatalError("playerItem is nil")
        }

        // playerItemに動画データが含まれています
        let player = AVPlayer(playerItem: playerItem)
        let playerLayer = AVPlayerLayer(player: player)
        playerLayer.videoGravity = .resizeAspect
        playerLayer.frame = self.view.layer.bounds
        self.view.layer.addSublayer(playerLayer)
        playerLayer.player?.play()
        self.playerLayer  = playerLayer
      }
    }
  }

参考リンク

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?