docs: update docs (#916)
* fix: re-run script
* test: fix noxfile
diff --git a/docs/dyn/videointelligence_v1beta2.videos.html b/docs/dyn/videointelligence_v1beta2.videos.html
index 46547c6..35200a5 100644
--- a/docs/dyn/videointelligence_v1beta2.videos.html
+++ b/docs/dyn/videointelligence_v1beta2.videos.html
@@ -90,29 +90,40 @@
The object takes the form of:
{ # Video annotation request.
- "inputUri": "A String", # Input video location. Currently, only
- # [Cloud Storage](https://cloud.google.com/storage/) URIs are
- # supported. URIs must be specified in the following format:
- # `gs://bucket-id/object-id` (other URI formats return
- # google.rpc.Code.INVALID_ARGUMENT). For more information, see
- # [Request URIs](https://cloud.google.com/storage/docs/request-endpoints).
- # To identify multiple videos, a video URI may include wildcards in the
- # `object-id`. Supported wildcards: '*' to match 0 or more characters;
- # '?' to match 1 character. If unset, the input video should be embedded
- # in the request as `input_content`. If set, `input_content` must be unset.
- "inputContent": "A String", # The video data bytes.
- # If unset, the input video(s) should be specified via the `input_uri`.
- # If set, `input_uri` must be unset.
- "features": [ # Required. Requested video annotation features.
- "A String",
- ],
- "outputUri": "A String", # Optional. Location where the output (in JSON format) should be stored.
- # Currently, only [Cloud Storage](https://cloud.google.com/storage/)
- # URIs are supported. These must be specified in the following format:
- # `gs://bucket-id/object-id` (other URI formats return
- # google.rpc.Code.INVALID_ARGUMENT). For more information, see
- # [Request URIs](https://cloud.google.com/storage/docs/request-endpoints).
"videoContext": { # Video context and/or feature-specific parameters. # Additional video context and/or feature-specific parameters.
+ "labelDetectionConfig": { # Config for LABEL_DETECTION. # Config for LABEL_DETECTION.
+ "labelDetectionMode": "A String", # What labels should be detected with LABEL_DETECTION, in addition to
+ # video-level labels or segment-level labels.
+ # If unspecified, defaults to `SHOT_MODE`.
+ "stationaryCamera": True or False, # Whether the video has been shot from a stationary (i.e., non-moving)
+ # camera. When set to true, might improve detection accuracy for moving
+ # objects. Should be used with `SHOT_AND_FRAME_MODE` enabled.
+ "videoConfidenceThreshold": 3.14, # The confidence threshold we perform filtering on the labels from
+ # video-level and shot-level detections. If not set, it's set to 0.3 by
+ # default. The valid range for this threshold is [0.1, 0.9]. Any value set
+ # outside of this range will be clipped.
+ # Note: For best results, follow the default threshold. We will update
+ # the default threshold everytime when we release a new model.
+ "frameConfidenceThreshold": 3.14, # The confidence threshold we perform filtering on the labels from
+ # frame-level detection. If not set, it is set to 0.4 by default. The valid
+ # range for this threshold is [0.1, 0.9]. Any value set outside of this
+ # range will be clipped.
+ # Note: For best results, follow the default threshold. We will update
+ # the default threshold everytime when we release a new model.
+ "model": "A String", # Model to use for label detection.
+ # Supported values: "builtin/stable" (the default if unset) and
+ # "builtin/latest".
+ },
+ "explicitContentDetectionConfig": { # Config for EXPLICIT_CONTENT_DETECTION. # Config for EXPLICIT_CONTENT_DETECTION.
+ "model": "A String", # Model to use for explicit content detection.
+ # Supported values: "builtin/stable" (the default if unset) and
+ # "builtin/latest".
+ },
+ "objectTrackingConfig": { # Config for OBJECT_TRACKING. # Config for OBJECT_TRACKING.
+ "model": "A String", # Model to use for object tracking.
+ # Supported values: "builtin/stable" (the default if unset) and
+ # "builtin/latest".
+ },
"speechTranscriptionConfig": { # Config for SPEECH_TRANSCRIPTION. # Config for SPEECH_TRANSCRIPTION.
"enableAutomaticPunctuation": True or False, # Optional. If 'true', adds punctuation to recognition result hypotheses.
# This feature is only available in select languages. Setting this for
@@ -124,23 +135,19 @@
# tracks, specify up to two tracks. Default: track 0.
42,
],
+ "diarizationSpeakerCount": 42, # Optional. If set, specifies the estimated number of speakers in the conversation.
+ # If not set, defaults to '2'.
+ # Ignored unless enable_speaker_diarization is set to true.
"maxAlternatives": 42, # Optional. Maximum number of recognition hypotheses to be returned.
# Specifically, the maximum number of `SpeechRecognitionAlternative` messages
# within each `SpeechTranscription`. The server may return fewer than
# `max_alternatives`. Valid values are `0`-`30`. A value of `0` or `1` will
# return a maximum of one. If omitted, will return a maximum of one.
- "diarizationSpeakerCount": 42, # Optional. If set, specifies the estimated number of speakers in the conversation.
- # If not set, defaults to '2'.
- # Ignored unless enable_speaker_diarization is set to true.
"languageCode": "A String", # Required. *Required* The language of the supplied audio as a
# [BCP-47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt) language tag.
# Example: "en-US".
# See [Language Support](https://cloud.google.com/speech/docs/languages)
# for a list of the currently supported language codes.
- "filterProfanity": True or False, # Optional. If set to `true`, the server will attempt to filter out
- # profanities, replacing all but the initial character in each filtered word
- # with asterisks, e.g. "f***". If set to `false` or omitted, profanities
- # won't be filtered out.
"speechContexts": [ # Optional. A means to provide context to assist the speech recognition.
{ # Provides "hints" to the speech recognizer to favor specific words and phrases
# in the results.
@@ -154,6 +161,10 @@
],
},
],
+ "filterProfanity": True or False, # Optional. If set to `true`, the server will attempt to filter out
+ # profanities, replacing all but the initial character in each filtered word
+ # with asterisks, e.g. "f***". If set to `false` or omitted, profanities
+ # won't be filtered out.
"enableSpeakerDiarization": True or False, # Optional. If 'true', enables speaker detection for each recognized word in
# the top alternative of the recognition result using a speaker_tag provided
# in the WordInfo.
@@ -192,44 +203,33 @@
# Supported values: "builtin/stable" (the default if unset) and
# "builtin/latest".
},
- "labelDetectionConfig": { # Config for LABEL_DETECTION. # Config for LABEL_DETECTION.
- "frameConfidenceThreshold": 3.14, # The confidence threshold we perform filtering on the labels from
- # frame-level detection. If not set, it is set to 0.4 by default. The valid
- # range for this threshold is [0.1, 0.9]. Any value set outside of this
- # range will be clipped.
- # Note: For best results, follow the default threshold. We will update
- # the default threshold everytime when we release a new model.
- "model": "A String", # Model to use for label detection.
- # Supported values: "builtin/stable" (the default if unset) and
- # "builtin/latest".
- "labelDetectionMode": "A String", # What labels should be detected with LABEL_DETECTION, in addition to
- # video-level labels or segment-level labels.
- # If unspecified, defaults to `SHOT_MODE`.
- "stationaryCamera": True or False, # Whether the video has been shot from a stationary (i.e., non-moving)
- # camera. When set to true, might improve detection accuracy for moving
- # objects. Should be used with `SHOT_AND_FRAME_MODE` enabled.
- "videoConfidenceThreshold": 3.14, # The confidence threshold we perform filtering on the labels from
- # video-level and shot-level detections. If not set, it's set to 0.3 by
- # default. The valid range for this threshold is [0.1, 0.9]. Any value set
- # outside of this range will be clipped.
- # Note: For best results, follow the default threshold. We will update
- # the default threshold everytime when we release a new model.
- },
- "explicitContentDetectionConfig": { # Config for EXPLICIT_CONTENT_DETECTION. # Config for EXPLICIT_CONTENT_DETECTION.
- "model": "A String", # Model to use for explicit content detection.
- # Supported values: "builtin/stable" (the default if unset) and
- # "builtin/latest".
- },
- "objectTrackingConfig": { # Config for OBJECT_TRACKING. # Config for OBJECT_TRACKING.
- "model": "A String", # Model to use for object tracking.
- # Supported values: "builtin/stable" (the default if unset) and
- # "builtin/latest".
- },
},
"locationId": "A String", # Optional. Cloud region where annotation should take place. Supported cloud
# regions are: `us-east1`, `us-west1`, `europe-west1`, `asia-east1`. If no
# region is specified, the region will be determined based on video file
# location.
+ "inputUri": "A String", # Input video location. Currently, only
+ # [Cloud Storage](https://cloud.google.com/storage/) URIs are
+ # supported. URIs must be specified in the following format:
+ # `gs://bucket-id/object-id` (other URI formats return
+ # google.rpc.Code.INVALID_ARGUMENT). For more information, see
+ # [Request URIs](https://cloud.google.com/storage/docs/request-endpoints).
+ # To identify multiple videos, a video URI may include wildcards in the
+ # `object-id`. Supported wildcards: '*' to match 0 or more characters;
+ # '?' to match 1 character. If unset, the input video should be embedded
+ # in the request as `input_content`. If set, `input_content` must be unset.
+ "inputContent": "A String", # The video data bytes.
+ # If unset, the input video(s) should be specified via the `input_uri`.
+ # If set, `input_uri` must be unset.
+ "features": [ # Required. Requested video annotation features.
+ "A String",
+ ],
+ "outputUri": "A String", # Optional. Location where the output (in JSON format) should be stored.
+ # Currently, only [Cloud Storage](https://cloud.google.com/storage/)
+ # URIs are supported. These must be specified in the following format:
+ # `gs://bucket-id/object-id` (other URI formats return
+ # google.rpc.Code.INVALID_ARGUMENT). For more information, see
+ # [Request URIs](https://cloud.google.com/storage/docs/request-endpoints).
}
x__xgafv: string, V1 error format.
@@ -265,6 +265,7 @@
#
# You can find out more about this error model and how to work with it in the
# [API Design Guide](https://cloud.google.com/apis/design/errors).
+ "code": 42, # The status code, which should be an enum value of google.rpc.Code.
"message": "A String", # A developer-facing error message, which should be in English. Any
# user-facing error message should be localized and sent in the
# google.rpc.Status.details field, or localized by the client.
@@ -274,7 +275,6 @@
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
],
- "code": 42, # The status code, which should be an enum value of google.rpc.Code.
},
"metadata": { # Service-specific metadata associated with the operation. It typically
# contains progress information and common metadata such as create time.