Skip to content

Commit 7708b1b

Browse files
authored
docs: align channel config with best practices (#71)
skipping optional check for kokoro pre-release dependencies.
1 parent 6683ad8 commit 7708b1b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

video/live-stream/create_channel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ def create_channel(
6464
key="es_video",
6565
video_stream=live_stream_v1.types.VideoStream(
6666
h264=live_stream_v1.types.VideoStream.H264CodecSettings(
67-
profile="main",
67+
profile="high",
6868
width_pixels=1280,
6969
height_pixels=720,
70-
bitrate_bps=1000000,
70+
bitrate_bps=3000000,
7171
frame_rate=30,
7272
),
7373
),

video/live-stream/create_channel_with_backup_input.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ def create_channel_with_backup_input(
8585
key="es_video",
8686
video_stream=live_stream_v1.types.VideoStream(
8787
h264=live_stream_v1.types.VideoStream.H264CodecSettings(
88-
profile="main",
88+
profile="high",
8989
width_pixels=1280,
9090
height_pixels=720,
91-
bitrate_bps=1000000,
91+
bitrate_bps=3000000,
9292
frame_rate=30,
9393
),
9494
),

0 commit comments

Comments
 (0)