Files
Woka_Native_iOS/WOKA/Karaoke/Controller/AVPlayerTesting.swift
2024-07-15 00:43:25 +05:30

23 lines
482 B
Swift

//
// 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.
}
}