Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/video/__tests__/video.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import nock from 'nock';
import nock from 'nock';
import { decode } from 'jsonwebtoken';
import { Auth } from '@vonage/auth';
import testDataSets from './__dataSets__';
Expand Down Expand Up @@ -395,6 +395,7 @@ describe('video', () => {
size: 0,
status: 'started',
streamMode: 'auto',
maxBitrate: 0,
url: null,
};

Expand Down
5 changes: 5 additions & 0 deletions packages/video/lib/types/ArchiveOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,9 @@ export type ArchiveOptions = {
* Stream mode for the archive.
*/
streamMode?: StreamMode;

/**
* The maximum video bitrate for the archive, in bits per second
*/
maxBitrate?: number;
}
Loading