google-apis-transcoder_v1 0.30.0 → 0.32.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: f962cc981422dc91d91423df0b45564c46467052e92a208e519bb43a2f05fd32
|
4
|
+
data.tar.gz: 6b67667c5364dab33c4fd36f534931338996b9d59a96f54489105f6e0f2d37da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f883b7a78159d2718104c9149f3888830bcbc078dde9c0f9cfb77501f5a9154b03adaa667499a22cdd99c704de6a5f081a4aafb86984b12d8305bc5a62708677
|
7
|
+
data.tar.gz: 14318d1697485141cd9f3b52d127900c30c1257a1e8cd4184ddfc49cf8b3398e656fc5f4edeb2311c38113a7aebd39cfe1cab80ca1e8c2b0c6c124f243430935
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-transcoder_v1
|
2
2
|
|
3
|
+
### v0.32.0 (2025-08-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250723
|
6
|
+
|
7
|
+
### v0.31.0 (2025-07-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250630
|
10
|
+
* Regenerated using generator version 0.18.0
|
11
|
+
|
3
12
|
### v0.30.0 (2025-05-04)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.17.0
|
@@ -1280,6 +1280,11 @@ module Google
|
|
1280
1280
|
class Input
|
1281
1281
|
include Google::Apis::Core::Hashable
|
1282
1282
|
|
1283
|
+
# Input attributes that provide additional information about the input asset.
|
1284
|
+
# Corresponds to the JSON property `attributes`
|
1285
|
+
# @return [Google::Apis::TranscoderV1::InputAttributes]
|
1286
|
+
attr_accessor :attributes
|
1287
|
+
|
1283
1288
|
# A unique key for this input. Must be specified when using advanced mapping and
|
1284
1289
|
# edit lists.
|
1285
1290
|
# Corresponds to the JSON property `key`
|
@@ -1306,12 +1311,32 @@ module Google
|
|
1306
1311
|
|
1307
1312
|
# Update properties of this object
|
1308
1313
|
def update!(**args)
|
1314
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
1309
1315
|
@key = args[:key] if args.key?(:key)
|
1310
1316
|
@preprocessing_config = args[:preprocessing_config] if args.key?(:preprocessing_config)
|
1311
1317
|
@uri = args[:uri] if args.key?(:uri)
|
1312
1318
|
end
|
1313
1319
|
end
|
1314
1320
|
|
1321
|
+
# Input attributes that provide additional information about the input asset.
|
1322
|
+
class InputAttributes
|
1323
|
+
include Google::Apis::Core::Hashable
|
1324
|
+
|
1325
|
+
# Optional. A list of track definitions for the input asset.
|
1326
|
+
# Corresponds to the JSON property `trackDefinitions`
|
1327
|
+
# @return [Array<Google::Apis::TranscoderV1::TrackDefinition>]
|
1328
|
+
attr_accessor :track_definitions
|
1329
|
+
|
1330
|
+
def initialize(**args)
|
1331
|
+
update!(**args)
|
1332
|
+
end
|
1333
|
+
|
1334
|
+
# Update properties of this object
|
1335
|
+
def update!(**args)
|
1336
|
+
@track_definitions = args[:track_definitions] if args.key?(:track_definitions)
|
1337
|
+
end
|
1338
|
+
end
|
1339
|
+
|
1315
1340
|
# Transcoding job resource.
|
1316
1341
|
class Job
|
1317
1342
|
include Google::Apis::Core::Hashable
|
@@ -1348,6 +1373,13 @@ module Google
|
|
1348
1373
|
# @return [Google::Apis::TranscoderV1::Status]
|
1349
1374
|
attr_accessor :error
|
1350
1375
|
|
1376
|
+
# Optional. Insert silence and duplicate frames when timestamp gaps are detected
|
1377
|
+
# in a given stream.
|
1378
|
+
# Corresponds to the JSON property `fillContentGaps`
|
1379
|
+
# @return [Boolean]
|
1380
|
+
attr_accessor :fill_content_gaps
|
1381
|
+
alias_method :fill_content_gaps?, :fill_content_gaps
|
1382
|
+
|
1351
1383
|
# Input only. Specify the `input_uri` to populate empty `uri` fields in each
|
1352
1384
|
# element of `Job.config.inputs` or `JobTemplate.config.inputs` when using
|
1353
1385
|
# template. URI of the media. Input files must be at least 5 seconds in duration
|
@@ -1424,6 +1456,7 @@ module Google
|
|
1424
1456
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1425
1457
|
@end_time = args[:end_time] if args.key?(:end_time)
|
1426
1458
|
@error = args[:error] if args.key?(:error)
|
1459
|
+
@fill_content_gaps = args[:fill_content_gaps] if args.key?(:fill_content_gaps)
|
1427
1460
|
@input_uri = args[:input_uri] if args.key?(:input_uri)
|
1428
1461
|
@labels = args[:labels] if args.key?(:labels)
|
1429
1462
|
@mode = args[:mode] if args.key?(:mode)
|
@@ -2222,6 +2255,51 @@ module Google
|
|
2222
2255
|
end
|
2223
2256
|
end
|
2224
2257
|
|
2258
|
+
# Track definition for the input asset.
|
2259
|
+
class TrackDefinition
|
2260
|
+
include Google::Apis::Core::Hashable
|
2261
|
+
|
2262
|
+
# Optional. Whether to automatically detect the languages present in the track.
|
2263
|
+
# If true, the system will attempt to identify all the languages present in the
|
2264
|
+
# track and populate the languages field.
|
2265
|
+
# Corresponds to the JSON property `detectLanguages`
|
2266
|
+
# @return [Boolean]
|
2267
|
+
attr_accessor :detect_languages
|
2268
|
+
alias_method :detect_languages?, :detect_languages
|
2269
|
+
|
2270
|
+
# Output only. A list of languages detected in the input asset, represented by a
|
2271
|
+
# BCP 47 language code, such as "en-US" or "sr-Latn". For more information, see
|
2272
|
+
# https://www.unicode.org/reports/tr35/#Unicode_locale_identifier. This field is
|
2273
|
+
# only populated if the detect_languages field is set to true.
|
2274
|
+
# Corresponds to the JSON property `detectedLanguages`
|
2275
|
+
# @return [Array<String>]
|
2276
|
+
attr_accessor :detected_languages
|
2277
|
+
|
2278
|
+
# The input track.
|
2279
|
+
# Corresponds to the JSON property `inputTrack`
|
2280
|
+
# @return [Fixnum]
|
2281
|
+
attr_accessor :input_track
|
2282
|
+
|
2283
|
+
# Optional. A list of languages spoken in the input asset, represented by a BCP
|
2284
|
+
# 47 language code, such as "en-US" or "sr-Latn". For more information, see
|
2285
|
+
# https://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
|
2286
|
+
# Corresponds to the JSON property `languages`
|
2287
|
+
# @return [Array<String>]
|
2288
|
+
attr_accessor :languages
|
2289
|
+
|
2290
|
+
def initialize(**args)
|
2291
|
+
update!(**args)
|
2292
|
+
end
|
2293
|
+
|
2294
|
+
# Update properties of this object
|
2295
|
+
def update!(**args)
|
2296
|
+
@detect_languages = args[:detect_languages] if args.key?(:detect_languages)
|
2297
|
+
@detected_languages = args[:detected_languages] if args.key?(:detected_languages)
|
2298
|
+
@input_track = args[:input_track] if args.key?(:input_track)
|
2299
|
+
@languages = args[:languages] if args.key?(:languages)
|
2300
|
+
end
|
2301
|
+
end
|
2302
|
+
|
2225
2303
|
# Video stream resource.
|
2226
2304
|
class VideoStream
|
2227
2305
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module TranscoderV1
|
18
18
|
# Version of the google-apis-transcoder_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.32.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250723"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -220,6 +220,12 @@ module Google
|
|
220
220
|
include Google::Apis::Core::JsonObjectSupport
|
221
221
|
end
|
222
222
|
|
223
|
+
class InputAttributes
|
224
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
|
+
|
226
|
+
include Google::Apis::Core::JsonObjectSupport
|
227
|
+
end
|
228
|
+
|
223
229
|
class Job
|
224
230
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
231
|
|
@@ -352,6 +358,12 @@ module Google
|
|
352
358
|
include Google::Apis::Core::JsonObjectSupport
|
353
359
|
end
|
354
360
|
|
361
|
+
class TrackDefinition
|
362
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
|
+
|
364
|
+
include Google::Apis::Core::JsonObjectSupport
|
365
|
+
end
|
366
|
+
|
355
367
|
class VideoStream
|
356
368
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
369
|
|
@@ -722,6 +734,8 @@ module Google
|
|
722
734
|
class Input
|
723
735
|
# @private
|
724
736
|
class Representation < Google::Apis::Core::JsonRepresentation
|
737
|
+
property :attributes, as: 'attributes', class: Google::Apis::TranscoderV1::InputAttributes, decorator: Google::Apis::TranscoderV1::InputAttributes::Representation
|
738
|
+
|
725
739
|
property :key, as: 'key'
|
726
740
|
property :preprocessing_config, as: 'preprocessingConfig', class: Google::Apis::TranscoderV1::PreprocessingConfig, decorator: Google::Apis::TranscoderV1::PreprocessingConfig::Representation
|
727
741
|
|
@@ -729,6 +743,14 @@ module Google
|
|
729
743
|
end
|
730
744
|
end
|
731
745
|
|
746
|
+
class InputAttributes
|
747
|
+
# @private
|
748
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
749
|
+
collection :track_definitions, as: 'trackDefinitions', class: Google::Apis::TranscoderV1::TrackDefinition, decorator: Google::Apis::TranscoderV1::TrackDefinition::Representation
|
750
|
+
|
751
|
+
end
|
752
|
+
end
|
753
|
+
|
732
754
|
class Job
|
733
755
|
# @private
|
734
756
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -739,6 +761,7 @@ module Google
|
|
739
761
|
property :end_time, as: 'endTime'
|
740
762
|
property :error, as: 'error', class: Google::Apis::TranscoderV1::Status, decorator: Google::Apis::TranscoderV1::Status::Representation
|
741
763
|
|
764
|
+
property :fill_content_gaps, as: 'fillContentGaps'
|
742
765
|
property :input_uri, as: 'inputUri'
|
743
766
|
hash :labels, as: 'labels'
|
744
767
|
property :mode, as: 'mode'
|
@@ -978,6 +1001,16 @@ module Google
|
|
978
1001
|
end
|
979
1002
|
end
|
980
1003
|
|
1004
|
+
class TrackDefinition
|
1005
|
+
# @private
|
1006
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1007
|
+
property :detect_languages, as: 'detectLanguages'
|
1008
|
+
collection :detected_languages, as: 'detectedLanguages'
|
1009
|
+
property :input_track, as: 'inputTrack'
|
1010
|
+
collection :languages, as: 'languages'
|
1011
|
+
end
|
1012
|
+
end
|
1013
|
+
|
981
1014
|
class VideoStream
|
982
1015
|
# @private
|
983
1016
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-transcoder_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.32.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-transcoder_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-transcoder_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-transcoder_v1/v0.32.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-transcoder_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Transcoder API V1
|
79
79
|
test_files: []
|