Skip to content

Commit

Permalink
docs: align channel config with best practices (#71)
Browse files Browse the repository at this point in the history
skipping optional check for kokoro pre-release dependencies.
  • Loading branch information
irataxy authored and dizcology committed Sep 15, 2023
1 parent bf58dbd commit fc76f67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions video/live-stream/create_channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ def create_channel(
key="es_video",
video_stream=live_stream_v1.types.VideoStream(
h264=live_stream_v1.types.VideoStream.H264CodecSettings(
profile="main",
profile="high",
width_pixels=1280,
height_pixels=720,
bitrate_bps=1000000,
bitrate_bps=3000000,
frame_rate=30,
),
),
Expand Down
4 changes: 2 additions & 2 deletions video/live-stream/create_channel_with_backup_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ def create_channel_with_backup_input(
key="es_video",
video_stream=live_stream_v1.types.VideoStream(
h264=live_stream_v1.types.VideoStream.H264CodecSettings(
profile="main",
profile="high",
width_pixels=1280,
height_pixels=720,
bitrate_bps=1000000,
bitrate_bps=3000000,
frame_rate=30,
),
),
Expand Down

0 comments on commit fc76f67

Please sign in to comment.