fix: add missing audioOutput
prop (#3450)
This commit is contained in:
parent
f35727f30e
commit
f20d68b814
@ -170,12 +170,15 @@ export enum PosterResizeModeType {
|
|||||||
STRETCH = 'stretch',
|
STRETCH = 'stretch',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type AudioOutput = 'speaker' | 'earpiece';
|
||||||
|
|
||||||
export interface ReactVideoProps extends ReactVideoEvents, AccessibilityProps {
|
export interface ReactVideoProps extends ReactVideoEvents, AccessibilityProps {
|
||||||
source?: ReactVideoSource;
|
source?: ReactVideoSource;
|
||||||
drm?: Drm;
|
drm?: Drm;
|
||||||
style?: StyleProp<ViewStyle>;
|
style?: StyleProp<ViewStyle>;
|
||||||
adTagUrl?: string;
|
adTagUrl?: string;
|
||||||
audioOnly?: boolean;
|
audioOnly?: boolean;
|
||||||
|
audioOutput?: AudioOutput; // Mobile
|
||||||
automaticallyWaitsToMinimizeStalling?: boolean; // iOS
|
automaticallyWaitsToMinimizeStalling?: boolean; // iOS
|
||||||
backBufferDurationMs?: number; // Android
|
backBufferDurationMs?: number; // Android
|
||||||
bufferConfig?: BufferConfig; // Android
|
bufferConfig?: BufferConfig; // Android
|
||||||
|
Loading…
Reference in New Issue
Block a user