// // AVPlayerTesting.swift // WOKA // // Created by Bilal on 12/07/2024. // import UIKit import AVKit class AVPlayerTesting: AVPlayerViewController { override func viewDidLoad() { super.viewDidLoad() let videoURL = URL(string: "https://content.jwplatform.com/videos/699dmCGz-Ysj2G4DQ.mp4")! let player = AVPlayer(url: videoURL) self.player = player player.play() // Do any additional setup after loading the view. } }