google-apis-transcoder_v1 0.4.0 → 0.7.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: 104604065dce52535e3efbf2b3882e1614d6e7d5bdae55a24a135f972a6c3241
|
4
|
+
data.tar.gz: 56c9e080583d03ed513d612e35cbc9508ec34ec6ad5df35e8d8de4473ac35b97
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 328608c1e5e7b61057736a38e27be18e7d0881f8434506a6d548c1d3f59490fd954a6f1f56a3adb5855250f51fa131c57c5d9b98633049a12651b2df537412b5
|
7
|
+
data.tar.gz: 1247ce7b82971f44092266af4b64716b0795a03e12cdf4ce7ad5c2fd62e95040b3799e7da644c5430515a2e4c66eb0544a0795ad629d2a3e420fa216eb4633ed
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# Release history for google-apis-transcoder_v1
|
2
2
|
|
3
|
+
### v0.7.0 (2022-08-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220811
|
6
|
+
* Regenerated using generator version 0.9.0
|
7
|
+
|
8
|
+
### v0.6.0 (2022-06-30)
|
9
|
+
|
10
|
+
* Regenerated using generator version 0.8.0
|
11
|
+
|
12
|
+
### v0.5.0 (2022-06-21)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20220609
|
15
|
+
* Regenerated using generator version 0.7.0
|
16
|
+
|
3
17
|
### v0.4.0 (2022-06-11)
|
4
18
|
|
5
19
|
* Regenerated from discovery document revision 20220602
|
@@ -306,6 +306,44 @@ module Google
|
|
306
306
|
end
|
307
307
|
end
|
308
308
|
|
309
|
+
# Bob Weaver Deinterlacing Filter Configuration.
|
310
|
+
class BwdifConfig
|
311
|
+
include Google::Apis::Core::Hashable
|
312
|
+
|
313
|
+
# Deinterlace all frames rather than just the frames identified as interlaced.
|
314
|
+
# The default is `false`.
|
315
|
+
# Corresponds to the JSON property `deinterlaceAllFrames`
|
316
|
+
# @return [Boolean]
|
317
|
+
attr_accessor :deinterlace_all_frames
|
318
|
+
alias_method :deinterlace_all_frames?, :deinterlace_all_frames
|
319
|
+
|
320
|
+
# Specifies the deinterlacing mode to adopt. The default is `send_frame`.
|
321
|
+
# Supported values: - `send_frame`: Output one frame for each frame - `
|
322
|
+
# send_field`: Output one frame for each field
|
323
|
+
# Corresponds to the JSON property `mode`
|
324
|
+
# @return [String]
|
325
|
+
attr_accessor :mode
|
326
|
+
|
327
|
+
# The picture field parity assumed for the input interlaced video. The default
|
328
|
+
# is `auto`. Supported values: - `tff`: Assume the top field is first - `bff`:
|
329
|
+
# Assume the bottom field is first - `auto`: Enable automatic detection of field
|
330
|
+
# parity
|
331
|
+
# Corresponds to the JSON property `parity`
|
332
|
+
# @return [String]
|
333
|
+
attr_accessor :parity
|
334
|
+
|
335
|
+
def initialize(**args)
|
336
|
+
update!(**args)
|
337
|
+
end
|
338
|
+
|
339
|
+
# Update properties of this object
|
340
|
+
def update!(**args)
|
341
|
+
@deinterlace_all_frames = args[:deinterlace_all_frames] if args.key?(:deinterlace_all_frames)
|
342
|
+
@mode = args[:mode] if args.key?(:mode)
|
343
|
+
@parity = args[:parity] if args.key?(:parity)
|
344
|
+
end
|
345
|
+
end
|
346
|
+
|
309
347
|
# Color preprocessing configuration. **Note:** This configuration is not
|
310
348
|
# supported.
|
311
349
|
class Color
|
@@ -410,6 +448,31 @@ module Google
|
|
410
448
|
end
|
411
449
|
end
|
412
450
|
|
451
|
+
# Deinterlace configuration for input video.
|
452
|
+
class Deinterlace
|
453
|
+
include Google::Apis::Core::Hashable
|
454
|
+
|
455
|
+
# Bob Weaver Deinterlacing Filter Configuration.
|
456
|
+
# Corresponds to the JSON property `bwdif`
|
457
|
+
# @return [Google::Apis::TranscoderV1::BwdifConfig]
|
458
|
+
attr_accessor :bwdif
|
459
|
+
|
460
|
+
# Yet Another Deinterlacing Filter Configuration.
|
461
|
+
# Corresponds to the JSON property `yadif`
|
462
|
+
# @return [Google::Apis::TranscoderV1::YadifConfig]
|
463
|
+
attr_accessor :yadif
|
464
|
+
|
465
|
+
def initialize(**args)
|
466
|
+
update!(**args)
|
467
|
+
end
|
468
|
+
|
469
|
+
# Update properties of this object
|
470
|
+
def update!(**args)
|
471
|
+
@bwdif = args[:bwdif] if args.key?(:bwdif)
|
472
|
+
@yadif = args[:yadif] if args.key?(:yadif)
|
473
|
+
end
|
474
|
+
end
|
475
|
+
|
413
476
|
# Denoise preprocessing configuration. **Note:** This configuration is not
|
414
477
|
# supported.
|
415
478
|
class Denoise
|
@@ -988,6 +1051,12 @@ module Google
|
|
988
1051
|
# @return [String]
|
989
1052
|
attr_accessor :input_uri
|
990
1053
|
|
1054
|
+
# The labels associated with this job. You can use these to organize and group
|
1055
|
+
# your jobs.
|
1056
|
+
# Corresponds to the JSON property `labels`
|
1057
|
+
# @return [Hash<String,String>]
|
1058
|
+
attr_accessor :labels
|
1059
|
+
|
991
1060
|
# The resource name of the job. Format: `projects/`project_number`/locations/`
|
992
1061
|
# location`/jobs/`job``
|
993
1062
|
# Corresponds to the JSON property `name`
|
@@ -1038,6 +1107,7 @@ module Google
|
|
1038
1107
|
@end_time = args[:end_time] if args.key?(:end_time)
|
1039
1108
|
@error = args[:error] if args.key?(:error)
|
1040
1109
|
@input_uri = args[:input_uri] if args.key?(:input_uri)
|
1110
|
+
@labels = args[:labels] if args.key?(:labels)
|
1041
1111
|
@name = args[:name] if args.key?(:name)
|
1042
1112
|
@output_uri = args[:output_uri] if args.key?(:output_uri)
|
1043
1113
|
@start_time = args[:start_time] if args.key?(:start_time)
|
@@ -1132,6 +1202,12 @@ module Google
|
|
1132
1202
|
# @return [Google::Apis::TranscoderV1::JobConfig]
|
1133
1203
|
attr_accessor :config
|
1134
1204
|
|
1205
|
+
# The labels associated with this job template. You can use these to organize
|
1206
|
+
# and group your job templates.
|
1207
|
+
# Corresponds to the JSON property `labels`
|
1208
|
+
# @return [Hash<String,String>]
|
1209
|
+
attr_accessor :labels
|
1210
|
+
|
1135
1211
|
# The resource name of the job template. Format: `projects/`project_number`/
|
1136
1212
|
# locations/`location`/jobTemplates/`job_template``
|
1137
1213
|
# Corresponds to the JSON property `name`
|
@@ -1145,6 +1221,7 @@ module Google
|
|
1145
1221
|
# Update properties of this object
|
1146
1222
|
def update!(**args)
|
1147
1223
|
@config = args[:config] if args.key?(:config)
|
1224
|
+
@labels = args[:labels] if args.key?(:labels)
|
1148
1225
|
@name = args[:name] if args.key?(:name)
|
1149
1226
|
end
|
1150
1227
|
end
|
@@ -1433,6 +1510,11 @@ module Google
|
|
1433
1510
|
# @return [Google::Apis::TranscoderV1::Deblock]
|
1434
1511
|
attr_accessor :deblock
|
1435
1512
|
|
1513
|
+
# Deinterlace configuration for input video.
|
1514
|
+
# Corresponds to the JSON property `deinterlace`
|
1515
|
+
# @return [Google::Apis::TranscoderV1::Deinterlace]
|
1516
|
+
attr_accessor :deinterlace
|
1517
|
+
|
1436
1518
|
# Denoise preprocessing configuration. **Note:** This configuration is not
|
1437
1519
|
# supported.
|
1438
1520
|
# Corresponds to the JSON property `denoise`
|
@@ -1455,6 +1537,7 @@ module Google
|
|
1455
1537
|
@color = args[:color] if args.key?(:color)
|
1456
1538
|
@crop = args[:crop] if args.key?(:crop)
|
1457
1539
|
@deblock = args[:deblock] if args.key?(:deblock)
|
1540
|
+
@deinterlace = args[:deinterlace] if args.key?(:deinterlace)
|
1458
1541
|
@denoise = args[:denoise] if args.key?(:denoise)
|
1459
1542
|
@pad = args[:pad] if args.key?(:pad)
|
1460
1543
|
end
|
@@ -1830,6 +1913,51 @@ module Google
|
|
1830
1913
|
@width_pixels = args[:width_pixels] if args.key?(:width_pixels)
|
1831
1914
|
end
|
1832
1915
|
end
|
1916
|
+
|
1917
|
+
# Yet Another Deinterlacing Filter Configuration.
|
1918
|
+
class YadifConfig
|
1919
|
+
include Google::Apis::Core::Hashable
|
1920
|
+
|
1921
|
+
# Deinterlace all frames rather than just the frames identified as interlaced.
|
1922
|
+
# The default is `false`.
|
1923
|
+
# Corresponds to the JSON property `deinterlaceAllFrames`
|
1924
|
+
# @return [Boolean]
|
1925
|
+
attr_accessor :deinterlace_all_frames
|
1926
|
+
alias_method :deinterlace_all_frames?, :deinterlace_all_frames
|
1927
|
+
|
1928
|
+
# Disable spacial interlacing. The default is `false`.
|
1929
|
+
# Corresponds to the JSON property `disableSpatialInterlacing`
|
1930
|
+
# @return [Boolean]
|
1931
|
+
attr_accessor :disable_spatial_interlacing
|
1932
|
+
alias_method :disable_spatial_interlacing?, :disable_spatial_interlacing
|
1933
|
+
|
1934
|
+
# Specifies the deinterlacing mode to adopt. The default is `send_frame`.
|
1935
|
+
# Supported values: - `send_frame`: Output one frame for each frame - `
|
1936
|
+
# send_field`: Output one frame for each field
|
1937
|
+
# Corresponds to the JSON property `mode`
|
1938
|
+
# @return [String]
|
1939
|
+
attr_accessor :mode
|
1940
|
+
|
1941
|
+
# The picture field parity assumed for the input interlaced video. The default
|
1942
|
+
# is `auto`. Supported values: - `tff`: Assume the top field is first - `bff`:
|
1943
|
+
# Assume the bottom field is first - `auto`: Enable automatic detection of field
|
1944
|
+
# parity
|
1945
|
+
# Corresponds to the JSON property `parity`
|
1946
|
+
# @return [String]
|
1947
|
+
attr_accessor :parity
|
1948
|
+
|
1949
|
+
def initialize(**args)
|
1950
|
+
update!(**args)
|
1951
|
+
end
|
1952
|
+
|
1953
|
+
# Update properties of this object
|
1954
|
+
def update!(**args)
|
1955
|
+
@deinterlace_all_frames = args[:deinterlace_all_frames] if args.key?(:deinterlace_all_frames)
|
1956
|
+
@disable_spatial_interlacing = args[:disable_spatial_interlacing] if args.key?(:disable_spatial_interlacing)
|
1957
|
+
@mode = args[:mode] if args.key?(:mode)
|
1958
|
+
@parity = args[:parity] if args.key?(:parity)
|
1959
|
+
end
|
1960
|
+
end
|
1833
1961
|
end
|
1834
1962
|
end
|
1835
1963
|
end
|
@@ -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.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220811"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -70,6 +70,12 @@ module Google
|
|
70
70
|
include Google::Apis::Core::JsonObjectSupport
|
71
71
|
end
|
72
72
|
|
73
|
+
class BwdifConfig
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
73
79
|
class Color
|
74
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
81
|
|
@@ -88,6 +94,12 @@ module Google
|
|
88
94
|
include Google::Apis::Core::JsonObjectSupport
|
89
95
|
end
|
90
96
|
|
97
|
+
class Deinterlace
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
91
103
|
class Denoise
|
92
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
105
|
|
@@ -256,6 +268,12 @@ module Google
|
|
256
268
|
include Google::Apis::Core::JsonObjectSupport
|
257
269
|
end
|
258
270
|
|
271
|
+
class YadifConfig
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
259
277
|
class AdBreak
|
260
278
|
# @private
|
261
279
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -336,6 +354,15 @@ module Google
|
|
336
354
|
end
|
337
355
|
end
|
338
356
|
|
357
|
+
class BwdifConfig
|
358
|
+
# @private
|
359
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
360
|
+
property :deinterlace_all_frames, as: 'deinterlaceAllFrames'
|
361
|
+
property :mode, as: 'mode'
|
362
|
+
property :parity, as: 'parity'
|
363
|
+
end
|
364
|
+
end
|
365
|
+
|
339
366
|
class Color
|
340
367
|
# @private
|
341
368
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -363,6 +390,16 @@ module Google
|
|
363
390
|
end
|
364
391
|
end
|
365
392
|
|
393
|
+
class Deinterlace
|
394
|
+
# @private
|
395
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
396
|
+
property :bwdif, as: 'bwdif', class: Google::Apis::TranscoderV1::BwdifConfig, decorator: Google::Apis::TranscoderV1::BwdifConfig::Representation
|
397
|
+
|
398
|
+
property :yadif, as: 'yadif', class: Google::Apis::TranscoderV1::YadifConfig, decorator: Google::Apis::TranscoderV1::YadifConfig::Representation
|
399
|
+
|
400
|
+
end
|
401
|
+
end
|
402
|
+
|
366
403
|
class Denoise
|
367
404
|
# @private
|
368
405
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -481,6 +518,7 @@ module Google
|
|
481
518
|
property :error, as: 'error', class: Google::Apis::TranscoderV1::Status, decorator: Google::Apis::TranscoderV1::Status::Representation
|
482
519
|
|
483
520
|
property :input_uri, as: 'inputUri'
|
521
|
+
hash :labels, as: 'labels'
|
484
522
|
property :name, as: 'name'
|
485
523
|
property :output_uri, as: 'outputUri'
|
486
524
|
property :start_time, as: 'startTime'
|
@@ -521,6 +559,7 @@ module Google
|
|
521
559
|
class Representation < Google::Apis::Core::JsonRepresentation
|
522
560
|
property :config, as: 'config', class: Google::Apis::TranscoderV1::JobConfig, decorator: Google::Apis::TranscoderV1::JobConfig::Representation
|
523
561
|
|
562
|
+
hash :labels, as: 'labels'
|
524
563
|
property :name, as: 'name'
|
525
564
|
end
|
526
565
|
end
|
@@ -612,6 +651,8 @@ module Google
|
|
612
651
|
|
613
652
|
property :deblock, as: 'deblock', class: Google::Apis::TranscoderV1::Deblock, decorator: Google::Apis::TranscoderV1::Deblock::Representation
|
614
653
|
|
654
|
+
property :deinterlace, as: 'deinterlace', class: Google::Apis::TranscoderV1::Deinterlace, decorator: Google::Apis::TranscoderV1::Deinterlace::Representation
|
655
|
+
|
615
656
|
property :denoise, as: 'denoise', class: Google::Apis::TranscoderV1::Denoise, decorator: Google::Apis::TranscoderV1::Denoise::Representation
|
616
657
|
|
617
658
|
property :pad, as: 'pad', class: Google::Apis::TranscoderV1::Pad, decorator: Google::Apis::TranscoderV1::Pad::Representation
|
@@ -705,6 +746,16 @@ module Google
|
|
705
746
|
property :width_pixels, as: 'widthPixels'
|
706
747
|
end
|
707
748
|
end
|
749
|
+
|
750
|
+
class YadifConfig
|
751
|
+
# @private
|
752
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
753
|
+
property :deinterlace_all_frames, as: 'deinterlaceAllFrames'
|
754
|
+
property :disable_spatial_interlacing, as: 'disableSpatialInterlacing'
|
755
|
+
property :mode, as: 'mode'
|
756
|
+
property :parity, as: 'parity'
|
757
|
+
end
|
758
|
+
end
|
708
759
|
end
|
709
760
|
end
|
710
761
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.7'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.7'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-transcoder_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-transcoder_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-transcoder_v1/v0.7.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-transcoder_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|