Embedding a local video into a UIView

强颜欢笑 提交于 2020-01-01 10:36:26

问题


How to embed a local video into a UIView?

There is a similar question here: Embeding youtube video into a UIView/UIWebView however, it is in obj-c and uses youtube.


回答1:


You can use AVPlayer

import UIKit
import AVFoundation
import AVKit

class ViewController: UIViewController {

    var avPlayer: AVPlayer!

    override func viewDidLoad() {

        super.viewDidLoad()
        let filepath: String? = Bundle.main.path(forResource: "qidong", ofType: "mp4")
        let fileURL = URL.init(fileURLWithPath: filepath!)


        avPlayer = AVPlayer(url: fileURL)


        let avPlayerController = AVPlayerViewController()
        avPlayerController.player = avPlayer
        avPlayerController.view.frame = CGRect(x: 0, y: 0, width: UIScreen.main.bounds.size.width, height: UIScreen.main.bounds.size.height)

//  hide show control
        avPlayerController.showsPlaybackControls = false
// play video

        avPlayerController.player?.play()
        self.view.addSubview(avPlayerController.view)
    }
}


来源:https://stackoverflow.com/questions/45886278/embedding-a-local-video-into-a-uiview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!