6

自 iOS 10 起,Apple 提供了下载 HLS (m3u8) 视频以供离线观看的支持。

我的问题是:有必要只能在播放时下载 HLS 吗?或者我们可以在用户按下下载按钮并显示进度时下载。

有没有人在 Objective C 版本中实现了这个?实际上,我以前的应用程序是用 Objective C 制作的。现在我想添加对下载 HLS 而不是 MP4 的支持(以前我下载 MP4 以供离线查看)。

我真的很绝望。如果实施,请分享想法或任何代码。

4

4 回答 4

4

我使用苹果代码 guid 下载 HLS 内容,代码如下:

var configuration: URLSessionConfiguration?
    var downloadSession: AVAssetDownloadURLSession?
    var downloadIdentifier = "\(Bundle.main.bundleIdentifier!).background"

func setupAssetDownload(videoUrl: String) {
    // Create new background session configuration.
    configuration = URLSessionConfiguration.background(withIdentifier: downloadIdentifier)

    // Create a new AVAssetDownloadURLSession with background configuration, delegate, and queue
    downloadSession = AVAssetDownloadURLSession(configuration: configuration!,
                                                assetDownloadDelegate: self,
                                                delegateQueue: OperationQueue.main)

    if let url = URL(string: videoUrl){
        let asset = AVURLAsset(url: url)

        // Create new AVAssetDownloadTask for the desired asset
        let downloadTask = downloadSession?.makeAssetDownloadTask(asset: asset,
                                                                 assetTitle: "Some Title",
                                                                 assetArtworkData: nil,
                                                                 options: nil)
        // Start task and begin download
        downloadTask?.resume()
    }
}//end method

func urlSession(_ session: URLSession, assetDownloadTask: AVAssetDownloadTask, didFinishDownloadingTo location: URL) {
    // Do not move the asset from the download location
    UserDefaults.standard.set(location.relativePath, forKey: "testVideoPath")
}

如果您不明白发生了什么,请在此处阅读: https://developer.apple.com/library/archive/documentation/AudioVideo/Conceptual/MediaPlaybackGuide/Contents/Resources/en.lproj/HTTPLiveStreaming/HTTPLiveStreaming。 html

现在您可以使用存储的 HSL 内容在 AVPlayer 中播放视频,代码如下:

//get the saved link from the user defaults
    let savedLink = UserDefaults.standard.string(forKey: "testVideoPath")
    let baseUrl = URL(fileURLWithPath: NSHomeDirectory()) //app's home directory
    let assetUrl = baseUrl.appendingPathComponent(savedLink!) //append the saved link to home path

现在使用路径在 AVPlayer 中播放视频

let avAssest = AVAsset(url: assetUrl)
let playerItem = AVPlayerItem(asset: avAssest)
let player = AVPlayer(playerItem: playerItem)  // video path coming from above function

    let playerViewController = AVPlayerViewController()
    playerViewController.player = player
    self.present(playerViewController, animated: true, completion: {
        player.play()
    })
于 2019-02-02T12:48:18.343 回答
2

您可以这样做的唯一方法是设置一个 HTTP 服务器,以便在您下载文件后在本地提供这些文件。

Live 播放列表使用滑动窗口。您需要在目标持续时间后定期重新加载它,并仅下载列表中出现的新段(它们将在稍后被删除)。

以下是一些相关答案: IOS 设备可以使用 html5 视频和 phonegap/cordova 从本地文件系统流式传输 m3u8 分段视频吗?

于 2016-11-14T14:31:05.763 回答
1

您可以使用AVAssetDownloadURLSession makeAssetDownloadTask. 查看AssetPersistenceManagerApples 示例代码:https ://developer.apple.com/library/content/samplecode/HLSCatalog/Introduction/Intro.html 使用 api 的 Objective C 版本应该是相当简单的。

于 2017-06-12T12:24:30.807 回答
0

是的,您可以下载通过 HLS 提供的视频流并稍后观看。

苹果有一个非常简单的示例应用程序(HLSCatalog)。代码相当简单。你可以在这里找到它 - https://developer.apple.com/services-account/download?path=/Developer_Tools/FairPlay_Streaming_Server_SDK_v3.1/FairPlay_Streaming_Server_SDK_v3.1.zip

您可以在此处找到有关离线 HLS 流式传输的更多信息。

于 2017-07-28T12:16:58.967 回答