Show subtitles in MPMoviePlayerViewController by default

Is there a way to show subtitles in a movie loaded by default MPMoviePlayerViewController? The movie has subtitles embedded in the video.

Thank!

+3
source share
1 answer

Unfortunately, this feature is not available in playback classes MPMoviePlayer. This is obviously quite annoying, and you should consider filing a feature request with Apple. Instead, you can use the class AVPlayer, which as a property .closedCaptionDisplayEnabled: the disadvantage is somewhat more difficult to use and is available only for iOS 4.0 +.

+1
source

All Articles