bitmovin-player-react-native
Version:
Official React Native bindings for Bitmovin's mobile Player SDKs.
21 lines (18 loc) • 436 B
text/typescript
/**
* Represents the configuration to start a download.
* @remarks Platform: Android, iOS
*/
export interface OfflineDownloadRequest {
/**
* Minimum video bitrate to download. The nearest higher available bitrate will be selected.
*/
minimumBitrate?: number;
/**
* Audio tracks with IDs to download.
*/
audioOptionIds?: string[];
/**
* Text tracks with IDs to download.
*/
textOptionIds?: string[];
}