google-apis-videointelligence_v1beta2 0.24.0 → 0.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0926a447e312fd81951331e394b76a83c37588cc9c933f9ee3348cfdcf3e71a0'
|
|
4
|
+
data.tar.gz: 71e5888da8b582e2d32bc6cc4753e61e2b2021d92ff42d745b60712ebc7d5a14
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7f95b5ae45e1273584476bc56458ba21dc88d5c94eb53af7b268ec903ff0c67db265e8959a2c06d0432ea9dc3d77dab9317fd49f389f29901d3a6cfa77dfa3a1
|
|
7
|
+
data.tar.gz: 84b60901abea9f12fc2bc052a61fa2dec2028dcd40a24bfdc7a49be91645dd5156142a4ce92c367b453d1689c72ca3d67bba56823c59fa6254e63b07094c44ea
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-videointelligence_v1beta2
|
|
2
2
|
|
|
3
|
+
### v0.26.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated using generator version 0.19.0
|
|
6
|
+
|
|
7
|
+
### v0.25.0 (2026-03-15)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260304
|
|
10
|
+
|
|
3
11
|
### v0.24.0 (2025-07-27)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250724
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/video-intelligence/docs/) m
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -1167,6 +1167,13 @@ module Google
|
|
|
1167
1167
|
# @return [String]
|
|
1168
1168
|
attr_accessor :end_time
|
|
1169
1169
|
|
|
1170
|
+
# Output only. A distinct string value is assigned for every speaker within the
|
|
1171
|
+
# audio. This field specifies which one of those speakers was detected to have
|
|
1172
|
+
# spoken this word.
|
|
1173
|
+
# Corresponds to the JSON property `speakerLabel`
|
|
1174
|
+
# @return [String]
|
|
1175
|
+
attr_accessor :speaker_label
|
|
1176
|
+
|
|
1170
1177
|
# Output only. A distinct integer value is assigned for every speaker within the
|
|
1171
1178
|
# audio. This field specifies which one of those speakers was detected to have
|
|
1172
1179
|
# spoken this word. Value ranges from 1 up to diarization_speaker_count, and is
|
|
@@ -1196,6 +1203,7 @@ module Google
|
|
|
1196
1203
|
def update!(**args)
|
|
1197
1204
|
@confidence = args[:confidence] if args.key?(:confidence)
|
|
1198
1205
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
1206
|
+
@speaker_label = args[:speaker_label] if args.key?(:speaker_label)
|
|
1199
1207
|
@speaker_tag = args[:speaker_tag] if args.key?(:speaker_tag)
|
|
1200
1208
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
1201
1209
|
@word = args[:word] if args.key?(:word)
|
|
@@ -2213,6 +2221,12 @@ module Google
|
|
|
2213
2221
|
class GoogleCloudVideointelligenceV1beta2SpeechTranscriptionConfig
|
|
2214
2222
|
include Google::Apis::Core::Hashable
|
|
2215
2223
|
|
|
2224
|
+
# Optional. Legacy field. This field must be a Cloud Storage URI prefix. (e.g., `
|
|
2225
|
+
# gs://bucket/path/`).
|
|
2226
|
+
# Corresponds to the JSON property `audioOutputUriPrefix`
|
|
2227
|
+
# @return [String]
|
|
2228
|
+
attr_accessor :audio_output_uri_prefix
|
|
2229
|
+
|
|
2216
2230
|
# Optional. For file formats, such as MXF or MKV, supporting multiple audio
|
|
2217
2231
|
# tracks, specify up to two tracks. Default: track 0.
|
|
2218
2232
|
# Corresponds to the JSON property `audioTracks`
|
|
@@ -2292,6 +2306,7 @@ module Google
|
|
|
2292
2306
|
|
|
2293
2307
|
# Update properties of this object
|
|
2294
2308
|
def update!(**args)
|
|
2309
|
+
@audio_output_uri_prefix = args[:audio_output_uri_prefix] if args.key?(:audio_output_uri_prefix)
|
|
2295
2310
|
@audio_tracks = args[:audio_tracks] if args.key?(:audio_tracks)
|
|
2296
2311
|
@diarization_speaker_count = args[:diarization_speaker_count] if args.key?(:diarization_speaker_count)
|
|
2297
2312
|
@enable_automatic_punctuation = args[:enable_automatic_punctuation] if args.key?(:enable_automatic_punctuation)
|
|
@@ -2820,6 +2835,13 @@ module Google
|
|
|
2820
2835
|
# @return [String]
|
|
2821
2836
|
attr_accessor :end_time
|
|
2822
2837
|
|
|
2838
|
+
# Output only. A distinct string value is assigned for every speaker within the
|
|
2839
|
+
# audio. This field specifies which one of those speakers was detected to have
|
|
2840
|
+
# spoken this word.
|
|
2841
|
+
# Corresponds to the JSON property `speakerLabel`
|
|
2842
|
+
# @return [String]
|
|
2843
|
+
attr_accessor :speaker_label
|
|
2844
|
+
|
|
2823
2845
|
# Output only. A distinct integer value is assigned for every speaker within the
|
|
2824
2846
|
# audio. This field specifies which one of those speakers was detected to have
|
|
2825
2847
|
# spoken this word. Value ranges from 1 up to diarization_speaker_count, and is
|
|
@@ -2849,6 +2871,7 @@ module Google
|
|
|
2849
2871
|
def update!(**args)
|
|
2850
2872
|
@confidence = args[:confidence] if args.key?(:confidence)
|
|
2851
2873
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
2874
|
+
@speaker_label = args[:speaker_label] if args.key?(:speaker_label)
|
|
2852
2875
|
@speaker_tag = args[:speaker_tag] if args.key?(:speaker_tag)
|
|
2853
2876
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
2854
2877
|
@word = args[:word] if args.key?(:word)
|
|
@@ -4000,6 +4023,13 @@ module Google
|
|
|
4000
4023
|
# @return [String]
|
|
4001
4024
|
attr_accessor :end_time
|
|
4002
4025
|
|
|
4026
|
+
# Output only. A distinct string value is assigned for every speaker within the
|
|
4027
|
+
# audio. This field specifies which one of those speakers was detected to have
|
|
4028
|
+
# spoken this word.
|
|
4029
|
+
# Corresponds to the JSON property `speakerLabel`
|
|
4030
|
+
# @return [String]
|
|
4031
|
+
attr_accessor :speaker_label
|
|
4032
|
+
|
|
4003
4033
|
# Output only. A distinct integer value is assigned for every speaker within the
|
|
4004
4034
|
# audio. This field specifies which one of those speakers was detected to have
|
|
4005
4035
|
# spoken this word. Value ranges from 1 up to diarization_speaker_count, and is
|
|
@@ -4029,6 +4059,7 @@ module Google
|
|
|
4029
4059
|
def update!(**args)
|
|
4030
4060
|
@confidence = args[:confidence] if args.key?(:confidence)
|
|
4031
4061
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
4062
|
+
@speaker_label = args[:speaker_label] if args.key?(:speaker_label)
|
|
4032
4063
|
@speaker_tag = args[:speaker_tag] if args.key?(:speaker_tag)
|
|
4033
4064
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
4034
4065
|
@word = args[:word] if args.key?(:word)
|
|
@@ -5180,6 +5211,13 @@ module Google
|
|
|
5180
5211
|
# @return [String]
|
|
5181
5212
|
attr_accessor :end_time
|
|
5182
5213
|
|
|
5214
|
+
# Output only. A distinct string value is assigned for every speaker within the
|
|
5215
|
+
# audio. This field specifies which one of those speakers was detected to have
|
|
5216
|
+
# spoken this word.
|
|
5217
|
+
# Corresponds to the JSON property `speakerLabel`
|
|
5218
|
+
# @return [String]
|
|
5219
|
+
attr_accessor :speaker_label
|
|
5220
|
+
|
|
5183
5221
|
# Output only. A distinct integer value is assigned for every speaker within the
|
|
5184
5222
|
# audio. This field specifies which one of those speakers was detected to have
|
|
5185
5223
|
# spoken this word. Value ranges from 1 up to diarization_speaker_count, and is
|
|
@@ -5209,6 +5247,7 @@ module Google
|
|
|
5209
5247
|
def update!(**args)
|
|
5210
5248
|
@confidence = args[:confidence] if args.key?(:confidence)
|
|
5211
5249
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
5250
|
+
@speaker_label = args[:speaker_label] if args.key?(:speaker_label)
|
|
5212
5251
|
@speaker_tag = args[:speaker_tag] if args.key?(:speaker_tag)
|
|
5213
5252
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
5214
5253
|
@word = args[:word] if args.key?(:word)
|
|
@@ -6566,6 +6605,13 @@ module Google
|
|
|
6566
6605
|
# @return [String]
|
|
6567
6606
|
attr_accessor :end_time
|
|
6568
6607
|
|
|
6608
|
+
# Output only. A distinct string value is assigned for every speaker within the
|
|
6609
|
+
# audio. This field specifies which one of those speakers was detected to have
|
|
6610
|
+
# spoken this word.
|
|
6611
|
+
# Corresponds to the JSON property `speakerLabel`
|
|
6612
|
+
# @return [String]
|
|
6613
|
+
attr_accessor :speaker_label
|
|
6614
|
+
|
|
6569
6615
|
# Output only. A distinct integer value is assigned for every speaker within the
|
|
6570
6616
|
# audio. This field specifies which one of those speakers was detected to have
|
|
6571
6617
|
# spoken this word. Value ranges from 1 up to diarization_speaker_count, and is
|
|
@@ -6595,6 +6641,7 @@ module Google
|
|
|
6595
6641
|
def update!(**args)
|
|
6596
6642
|
@confidence = args[:confidence] if args.key?(:confidence)
|
|
6597
6643
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
6644
|
+
@speaker_label = args[:speaker_label] if args.key?(:speaker_label)
|
|
6598
6645
|
@speaker_tag = args[:speaker_tag] if args.key?(:speaker_tag)
|
|
6599
6646
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
6600
6647
|
@word = args[:word] if args.key?(:word)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module VideointelligenceV1beta2
|
|
18
18
|
# Version of the google-apis-videointelligence_v1beta2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.26.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260304"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1479,6 +1479,7 @@ module Google
|
|
|
1479
1479
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1480
1480
|
property :confidence, as: 'confidence'
|
|
1481
1481
|
property :end_time, as: 'endTime'
|
|
1482
|
+
property :speaker_label, as: 'speakerLabel'
|
|
1482
1483
|
property :speaker_tag, as: 'speakerTag'
|
|
1483
1484
|
property :start_time, as: 'startTime'
|
|
1484
1485
|
property :word, as: 'word'
|
|
@@ -1788,6 +1789,7 @@ module Google
|
|
|
1788
1789
|
class GoogleCloudVideointelligenceV1beta2SpeechTranscriptionConfig
|
|
1789
1790
|
# @private
|
|
1790
1791
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1792
|
+
property :audio_output_uri_prefix, as: 'audioOutputUriPrefix'
|
|
1791
1793
|
collection :audio_tracks, as: 'audioTracks'
|
|
1792
1794
|
property :diarization_speaker_count, as: 'diarizationSpeakerCount'
|
|
1793
1795
|
property :enable_automatic_punctuation, as: 'enableAutomaticPunctuation'
|
|
@@ -1956,6 +1958,7 @@ module Google
|
|
|
1956
1958
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1957
1959
|
property :confidence, as: 'confidence'
|
|
1958
1960
|
property :end_time, as: 'endTime'
|
|
1961
|
+
property :speaker_label, as: 'speakerLabel'
|
|
1959
1962
|
property :speaker_tag, as: 'speakerTag'
|
|
1960
1963
|
property :start_time, as: 'startTime'
|
|
1961
1964
|
property :word, as: 'word'
|
|
@@ -2315,6 +2318,7 @@ module Google
|
|
|
2315
2318
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2316
2319
|
property :confidence, as: 'confidence'
|
|
2317
2320
|
property :end_time, as: 'endTime'
|
|
2321
|
+
property :speaker_label, as: 'speakerLabel'
|
|
2318
2322
|
property :speaker_tag, as: 'speakerTag'
|
|
2319
2323
|
property :start_time, as: 'startTime'
|
|
2320
2324
|
property :word, as: 'word'
|
|
@@ -2674,6 +2678,7 @@ module Google
|
|
|
2674
2678
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2675
2679
|
property :confidence, as: 'confidence'
|
|
2676
2680
|
property :end_time, as: 'endTime'
|
|
2681
|
+
property :speaker_label, as: 'speakerLabel'
|
|
2677
2682
|
property :speaker_tag, as: 'speakerTag'
|
|
2678
2683
|
property :start_time, as: 'startTime'
|
|
2679
2684
|
property :word, as: 'word'
|
|
@@ -3098,6 +3103,7 @@ module Google
|
|
|
3098
3103
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3099
3104
|
property :confidence, as: 'confidence'
|
|
3100
3105
|
property :end_time, as: 'endTime'
|
|
3106
|
+
property :speaker_label, as: 'speakerLabel'
|
|
3101
3107
|
property :speaker_tag, as: 'speakerTag'
|
|
3102
3108
|
property :start_time, as: 'startTime'
|
|
3103
3109
|
property :word, as: 'word'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-videointelligence_v1beta2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.26.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-videointelligence_v1beta2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-videointelligence_v1beta2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-videointelligence_v1beta2/v0.26.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-videointelligence_v1beta2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|