从 iOS 设备播放视频文件

Posted

技术标签:

【中文标题】从 iOS 设备播放视频文件【英文标题】:Play Video File from iOS Device 【发布时间】:2015-06-24 06:35:36 【问题描述】:

我在我的 ios 应用程序上播放视频。

func playVideo() 
        if let path = NSBundle.mainBundle().pathForResource("video", ofType:"mp4"),
            url = NSURL(fileURLWithPath: path),
            moviePlayer = MPMoviePlayerController(contentURL: url) 
                self.moviePlayer = moviePlayer
                moviePlayer.view.frame = self.view.bounds
                moviePlayer.prepareToPlay()
                moviePlayer.controlStyle = MPMovieControlStyle.None
                moviePlayer.view.frame = CGRect(x: 0, y: 0, width: UIScreen.mainScreen().bounds.width, height: UIScreen.mainScreen().bounds.height)
                moviePlayer.scalingMode = .AspectFill
                self.view.addSubview(moviePlayer.view)

if (oldMoviePlayer != nil)
                    println("Animation Run")
                    UIView.transitionFromView(oldMoviePlayer!.view, toView: moviePlayer.view, duration: 1.0, options: transitionOptions, completion: nil)
                
                oldMoviePlayer = moviePlayer

         else 
            debugPrintln("Ops, something wrong when playing video.m4v")
        
    

现在 video.mp4 文件保存在我的项目中。

如何从我的设备而不是项目中播放视频?

我可以从设备获取视频的路径和名称吗?

【问题讨论】:

【参考方案1】:

好的,鉴于您的情况,以下文档应该可以帮助您 - 它是用目标 c 编写的,但您应该能够快速计算出对应的:

https://developer.apple.com/library/ios/documentation/AudioVideo/Conceptual/MultimediaPG/UsingAudio/UsingAudio.html#//apple_ref/doc/uid/TP40009767-CH2-SW43

https://developer.apple.com/library/ios/documentation/AudioVideo/Conceptual/MultimediaPG/UsingAudio/UsingAudio.html#//apple_ref/doc/uid/TP40009767-CH2-SW43

全部理解后请标记为答案:)

【讨论】:

这两个链接现在都断开了。 这就是为什么人们在他们提供的只是一个链接时会被否决:-(

以上是关于从 iOS 设备播放视频文件的主要内容,如果未能解决你的问题,请参考以下文章

如何确定 iOS 设备的视频播放能力?

在 iOs 和 Android 的 PhoneGap/Cordova-app 中播放视频

iOS 视频播放性能模拟器与设备

Ionic3 Angular 不允许从视频播放器(Android 和 iOS)访问本地视频文件

从IOS设备播放音频/视频内容到Apple TV的起点[关闭]

avplayer 不播放通过 IOS Objective-C 中的设备摄像头捕获的视频中的音频