bitmovin-player-react-native
Version:
Official React Native bindings for Bitmovin's mobile Player SDKs.
19 lines • 510 B
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[];
}
//# sourceMappingURL=offlineDownloadRequest.d.ts.map