bitmovin-player-react-native
Version:
Official React Native bindings for Bitmovin's mobile Player SDKs.
27 lines • 694 B
TypeScript
/**
* Supported subtitle/caption file formats.
* @remarks Platform: Android, iOS, tvOS
*/
export declare 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"
}
//# sourceMappingURL=subtitleFormat.d.ts.map