diff --git a/packages/google-cloud-video-transcoder/samples/snippets/create_job_with_animated_overlay.py b/packages/google-cloud-video-transcoder/samples/snippets/create_job_with_animated_overlay.py index a3f3cbb36033..52940e858051 100644 --- a/packages/google-cloud-video-transcoder/samples/snippets/create_job_with_animated_overlay.py +++ b/packages/google-cloud-video-transcoder/samples/snippets/create_job_with_animated_overlay.py @@ -40,7 +40,7 @@ def create_job_with_animated_overlay( project_id: The GCP project ID. location: The location to start the job in. input_uri: Uri of the video in the Cloud Storage bucket. - overlay_image_uri: Uri of the JPEG image for the overlay in the Cloud Storage bucket. Must be a JPEG. + overlay_image_uri: Uri of the image for the overlay in the Cloud Storage bucket. output_uri: Uri of the video output folder in the Cloud Storage bucket.""" client = TranscoderServiceClient() @@ -143,7 +143,7 @@ def create_job_with_animated_overlay( ) parser.add_argument( "--overlay_image_uri", - help="Uri of the overlay JPEG image in the Cloud Storage bucket. Must be a JPEG.", + help="Uri of the overlay image in the Cloud Storage bucket.", required=True, ) parser.add_argument( diff --git a/packages/google-cloud-video-transcoder/samples/snippets/create_job_with_static_overlay.py b/packages/google-cloud-video-transcoder/samples/snippets/create_job_with_static_overlay.py index 37ce26b670d8..67839bb33302 100644 --- a/packages/google-cloud-video-transcoder/samples/snippets/create_job_with_static_overlay.py +++ b/packages/google-cloud-video-transcoder/samples/snippets/create_job_with_static_overlay.py @@ -40,7 +40,7 @@ def create_job_with_static_overlay( project_id: The GCP project ID. location: The location to start the job in. input_uri: Uri of the video in the Cloud Storage bucket. - overlay_image_uri: Uri of the JPEG image for the overlay in the Cloud Storage bucket. Must be a JPEG. + overlay_image_uri: Uri of the image for the overlay in the Cloud Storage bucket. output_uri: Uri of the video output folder in the Cloud Storage bucket.""" client = TranscoderServiceClient() @@ -131,7 +131,7 @@ def create_job_with_static_overlay( ) parser.add_argument( "--overlay_image_uri", - help="Uri of the overlay JPEG image in the Cloud Storage bucket. Must be a JPEG.", + help="Uri of the overlay image in the Cloud Storage bucket.", required=True, ) parser.add_argument(