У меня есть файлы M3U8 в моем проекте, в которые я хочу играть с AvPlayer. < /p>
if let url = Bundle.main.url(forResource: "master", withExtension: "m3u8", subdirectory: "Media") {
let player = AVPlayer(url: url)
VideoPlayerView(player: player)
.onAppear {
player.play()
}
.frame(height: 300) } else {
Text("Failed to load video")
.foregroundColor(.red) }
Подробнее здесь: https://stackoverflow.com/questions/796 ... om-locally