R – Closed Captions in MPMoviePlayerController for iPhone

closed-captionsiphonempmovieplayercontroller

I'm trying to play a movie that has closed captions embedded in the file (.scc) using an instance of MPMoviePlayerController. I've read the documentation and don't see support to turn captions on with this class. I know Apple allows a user to turn on captions for movies from iTunes. Anyone know of a particular way to do this that I might be overlooking?

Best Answer

On iOS 4.0 and later, you can also use the AVPlayer class. It natively supports closed caption (see the closedCaptionDisplayEnabled property).

Related Topic