sdk: profile hint

This commit is contained in:
Koushik Dutta
2022-05-16 23:37:25 -07:00
parent dbccf258be
commit 1703653df4
5 changed files with 5 additions and 0 deletions

View File

@@ -355,6 +355,7 @@ export interface Camera {
export interface VideoStreamOptions {
codec?: string;
profile?: string;
width?: number;
height?: number;
bitrate?: number;

View File

@@ -209,6 +209,7 @@ class VideoStreamOptions(TypedDict):
keyframeInterval: float
maxBitrate: float
minBitrate: float
profile: str
width: float
pass

View File

@@ -503,6 +503,7 @@ export interface Camera {
}
export interface VideoStreamOptions {
codec?: string;
profile?: string;
width?: number;
height?: number;
bitrate?: number;

View File

@@ -1109,6 +1109,7 @@ export interface Camera {
export interface VideoStreamOptions {
codec?: string;
profile?: string;
width?: number;
height?: number;
bitrate?: number;

View File

@@ -209,6 +209,7 @@ class VideoStreamOptions(TypedDict):
keyframeInterval: float
maxBitrate: float
minBitrate: float
profile: str
width: float
pass