google-apis-transcoder_v1 0.6.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
|
@@ -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
|
|
@@ -1447,6 +1510,11 @@ module Google
|
|
|
1447
1510
|
# @return [Google::Apis::TranscoderV1::Deblock]
|
|
1448
1511
|
attr_accessor :deblock
|
|
1449
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
|
+
|
|
1450
1518
|
# Denoise preprocessing configuration. **Note:** This configuration is not
|
|
1451
1519
|
# supported.
|
|
1452
1520
|
# Corresponds to the JSON property `denoise`
|
|
@@ -1469,6 +1537,7 @@ module Google
|
|
|
1469
1537
|
@color = args[:color] if args.key?(:color)
|
|
1470
1538
|
@crop = args[:crop] if args.key?(:crop)
|
|
1471
1539
|
@deblock = args[:deblock] if args.key?(:deblock)
|
|
1540
|
+
@deinterlace = args[:deinterlace] if args.key?(:deinterlace)
|
|
1472
1541
|
@denoise = args[:denoise] if args.key?(:denoise)
|
|
1473
1542
|
@pad = args[:pad] if args.key?(:pad)
|
|
1474
1543
|
end
|
|
@@ -1844,6 +1913,51 @@ module Google
|
|
|
1844
1913
|
@width_pixels = args[:width_pixels] if args.key?(:width_pixels)
|
|
1845
1914
|
end
|
|
1846
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
|
|
1847
1961
|
end
|
|
1848
1962
|
end
|
|
1849
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
|
|
@@ -614,6 +651,8 @@ module Google
|
|
|
614
651
|
|
|
615
652
|
property :deblock, as: 'deblock', class: Google::Apis::TranscoderV1::Deblock, decorator: Google::Apis::TranscoderV1::Deblock::Representation
|
|
616
653
|
|
|
654
|
+
property :deinterlace, as: 'deinterlace', class: Google::Apis::TranscoderV1::Deinterlace, decorator: Google::Apis::TranscoderV1::Deinterlace::Representation
|
|
655
|
+
|
|
617
656
|
property :denoise, as: 'denoise', class: Google::Apis::TranscoderV1::Denoise, decorator: Google::Apis::TranscoderV1::Denoise::Representation
|
|
618
657
|
|
|
619
658
|
property :pad, as: 'pad', class: Google::Apis::TranscoderV1::Pad, decorator: Google::Apis::TranscoderV1::Pad::Representation
|
|
@@ -707,6 +746,16 @@ module Google
|
|
|
707
746
|
property :width_pixels, as: 'widthPixels'
|
|
708
747
|
end
|
|
709
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
|
|
710
759
|
end
|
|
711
760
|
end
|
|
712
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
|
|
@@ -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: []
|