I downloaded an YouTube video which had subtitles. I uploaded it on my platform and when I stream the video I don't subtitles.
AVURLAsset *avAsset = [AVURLAsset URLAssetWithURL:url options:nil];
AVPlayerItem *playerItem = [AVPlayerItem playerItemWithAsset:avAsset];
AVMediaSelectionGroup* subtitle = [avAsset mediaSelectionGroupForMediaCharacteristic:AVMediaCharacteristicLegible];
[playerItem selectMediaOption:subtitle.options[0] inMediaSelectionGroup:subtitle];
The value of variable 'subtitle' is nil.
Is there something wrong with the code or the video has to be configured differently?