ios - 如果在系统设置中关闭隐藏式字幕,则不会显示字幕

标签 ios swift avfoundation avplayer avkit

无论设备在辅助功能下设置了什么,我都试图显示字幕。目前,如果设备设置为英语并在设置中启用隐藏式字幕,则将播放英语字幕;如果设备设置为西类牙语,则将播放西类牙语字幕。我希望无论隐藏式字幕是否打开,都能播放字幕。

我尝试添加this code来自苹果的文档,但这没有帮助。它似乎可以很好地读取选项,检测到西类牙语和英语字幕,但我无法让它们显示在屏幕上。

import UIKit
import AVFoundation
import AVKit

class ViewController : UIViewController
{
    override func loadView()
    {
        let view = UIView()
        view.backgroundColor = .white

        self.view = view
    }

    override func viewDidLoad()
    {
        super.viewDidLoad()
        guard let path = Bundle.main.path(forResource: "Lebron", ofType:"m4v")
        else
        {
            debugPrint("File not Found")
            return
        }

        let player = AVPlayer(url: URL(fileURLWithPath: path))
        player.appliesMediaSelectionCriteriaAutomatically = false

        let asset = AVAsset(url: URL(fileURLWithPath: path))

        for characteristic in asset.availableMediaCharacteristicsWithMediaSelectionOptions {
            print("\(characteristic)")

            // Retrieve the AVMediaSelectionGroup for the specified characteristic.
            if let group = asset.mediaSelectionGroup(forMediaCharacteristic: characteristic) {
                // Print its options.
                for option in group.options {
                    print("  Option: \(option.displayName)")
                }
            }
        }

        if let group = asset.mediaSelectionGroup(forMediaCharacteristic: AVMediaCharacteristic.legible) {
            let locale = Locale(identifier: "en")
            let options =
                AVMediaSelectionGroup.mediaSelectionOptions(from: group.options, with: locale)
            if let option = options.first {
                // Select Spanish-language subtitle option
                player.currentItem!.select(option, in: group)
                print("\(player.currentItem!.select(option, in: group))")
            }
        }

        let playerViewController = AVPlayerViewController()
        playerViewController.player = player

        addChild(playerViewController)
        playerViewController.view.frame = view.frame
        view.addSubview(playerViewController.view)
        playerViewController.didMove(toParent: self)
        playerViewController.player?.seek(to: CMTime(seconds: 0, preferredTimescale: 1))

    }
}

这是控制台的输出

2019-05-30 21:52:21.432911-0400 subtitleTest[6438:1450671] [Accessibility] ****************** Loading GAX Client Bundle ****************
AVMediaCharacteristic(_rawValue: AVMediaCharacteristicAudible)
  Option: Unknown language
AVMediaCharacteristic(_rawValue: AVMediaCharacteristicLegible)
  Option: Spanish
  Option: Spanish Forced
  Option: English
  Option: English Forced
()

设备应该显示与输入区域设置匹配的字幕文件,但它根本不显示任何字幕。

最佳答案

我最终成功了。这是我最终使用的代码。只需将 LebronTestProdNamed 更改为视频文件的名称,将 .m4v 更改为视频文件的文件类型。

import UIKit
import AVFoundation
import AVKit

class ViewController : UIViewController
{
    override func loadView()
    {
        let view = UIView()
        view.backgroundColor = .white

        self.view = view
    }
    var test = AVPlayerMediaSelectionCriteria()

    override func viewDidLoad()
    {
        super.viewDidLoad()
        guard let path = Bundle.main.path(forResource: "LebronTestProdNamed", ofType:"m4v")
            else
        {
            debugPrint("File not Found")
            return
        }

        let player = AVPlayer(url: URL(fileURLWithPath: path))
        player.appliesMediaSelectionCriteriaAutomatically = false

        let asset = AVAsset(url: URL(fileURLWithPath: path))
        let playerItem = AVPlayerItem(asset: asset)

        for characteristic in asset.availableMediaCharacteristicsWithMediaSelectionOptions {
            print("\(characteristic)")

            // Retrieve the AVMediaSelectionGroup for the specified characteristic.
            if let group = asset.mediaSelectionGroup(forMediaCharacteristic: characteristic) {
                // Print its options.
                for option in group.options {
                    print("  Option: \(option.displayName)")
                }
            }
        }

        // Create a group of the legible AVMediaCharacteristics (Subtitles)
        if let group = asset.mediaSelectionGroup(forMediaCharacteristic: AVMediaCharacteristic.legible) {
            // Set the locale identifier to the value of languageID to select the current language
            let locale = Locale(identifier: "en-EN")
            // Create an option group to hold the options in the group that match the locale
            let options =
                AVMediaSelectionGroup.mediaSelectionOptions(from: group.options, with: locale)
            // Assign the first option from options to the variable option
            if let option = options.first {
                // Select the option for the selected locale
                playerItem.select(option, in: group)
            }
        }



        let playerViewController = AVPlayerViewController()
        playerViewController.player = player
        playerViewController.player?.replaceCurrentItem(with: playerItem)

        addChild(playerViewController)
        playerViewController.view.frame = view.frame
        view.addSubview(playerViewController.view)
        playerViewController.didMove(toParent: self)
        playerViewController.player?.seek(to: CMTime(seconds: 0, preferredTimescale: 1))

    }
}

关于ios - 如果在系统设置中关闭隐藏式字幕,则不会显示字幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56387787/

相关文章:

ios - 多个音轨的 AVMutableAudioMix 音量无法正常工作

iphone - 如何将CMSampleBuffer/UIImage转换为ffmpeg的AVPicture?

ios - 用适当的 NSArray 值更新我的 NSString 的最佳方法是什么

ios - 核心数据唯一实体属性

ios - 如何计算我的动态 textView 的正确高度

ios - 无法让自定义相机显示正在捕获的内容的预览

ios - 如何在 Swift 中使用色调和一些文本向 UIImageView 添加叠加层?

ios - 将图像转换为Base64编码(状态码为500)

ios - 如何在 iPad 上将两个文本框设置为一行?

ios - AVPlayerLayer 在 AVPlayer.replaceCurrentItem 上闪烁黑色(带有 :)