Skip to content
This repository has been archived by the owner on Nov 21, 2023. It is now read-only.

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 committed Jun 28, 2022
1 parent 69e6802 commit 2a1a5b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions samples/snippets/create_channel.py
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 samples/snippets/create_channel_with_backup_input.py
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 2a1a5b2

Please sign in to comment.