UNPKG

bitmovin-player-react-native

Version:

Official React Native bindings for Bitmovin's mobile Player SDKs.

27 lines (26 loc) 603 B
/** * Supported subtitle/caption file formats. * @remarks Platform: Android, iOS, tvOS */ export enum SubtitleFormat { /** * Closed Captioning (CEA) subtitle format. * @remarks Platform: Android, iOS, tvOS */ CEA = 'cea', /** * Timed Text Markup Language (TTML) subtitle format. * @remarks Platform: Android, iOS, tvOS */ TTML = 'ttml', /** * Web Video Text Tracks Format (WebVTT) subtitle format. * @remarks Platform: Android, iOS, tvOS */ VTT = 'vtt', /** * SubRip (SRT) subtitle format. * @remarks Platform: Android, iOS, tvOS */ SRT = 'srt', }