IOS AVPlayer cannot disable closed captions

后端 未结 4 1125
感情败类
感情败类 2021-01-27 13:01

I\'ve created my own video player using AVPlayer and have gotten everything to work properly except for closed captions. I have a video I\'m testing and I know for a fact the cl

4条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-27 13:22

    Yes.

    This is the right way :

    let group = self.player!.currentItem!.asset.mediaSelectionGroupForMediaCharacteristic(AVMediaCharacteristicLegible)
    self.player?.currentItem?.selectMediaOption(nil, inMediaSelectionGroup: group!)
    

提交回复
热议问题