@opentok/client 2.26.3 → 2.26.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/js/opentok.d.ts +2 -1
- package/dist/js/opentok.js +2259 -1695
- package/dist/js/opentok.js.map +1 -1
- package/dist/js/opentok.min.js +10 -10
- package/dist/js/opentok.min.js.map +1 -1
- package/package.json +1 -1
package/dist/js/opentok.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ declare namespace OT {
|
|
|
61
61
|
|
|
62
62
|
export function setProxyUrl(proxyUrl: string): void;
|
|
63
63
|
|
|
64
|
-
export function getSupportedCodecs(): Promise<{ videoEncoders: ('H264' | 'VP8')[], videoDecoders: ('H264' | 'VP8')[] }>;
|
|
64
|
+
export function getSupportedCodecs(): Promise<{ videoEncoders: ('H264' | 'VP8' | 'VP9')[], videoDecoders: ('H264' | 'VP8' | 'VP9')[] }>;
|
|
65
65
|
|
|
66
66
|
export function hasMediaProcessorSupport(): boolean;
|
|
67
67
|
|
|
@@ -558,6 +558,7 @@ declare namespace OT {
|
|
|
558
558
|
setAudioVolume(volume: number): void;
|
|
559
559
|
setPreferredFrameRate(frameRate: number): void;
|
|
560
560
|
setPreferredResolution(resolution: Dimensions): void;
|
|
561
|
+
setAudioMediaProcessorConnector(connector: MediaProcessorConnector | null): Promise<void>;
|
|
561
562
|
setVideoMediaProcessorConnector(connector: MediaProcessorConnector | null): Promise<void>;
|
|
562
563
|
subscribeToAudio(value: boolean): void;
|
|
563
564
|
subscribeToVideo(value: boolean): void;
|