google-apis-transcoder_v1beta1 0.2.0 → 0.3.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: 2bd6dc49a626e645763022c8e369768360a621f77e14c575548ea664b28905a3
4
- data.tar.gz: e0623069b750d19e96a6360c71c9fd83daa797ee1ad7963872447d16630d6fe9
3
+ metadata.gz: 975c286c2b12a85d95cb78a0c0a248db4b400736543aabe0eb552236c146c832
4
+ data.tar.gz: 808caa2d96f112e6f6406a03261d4da5b3b24ce29d21e062d5247d00fe0fed94
5
5
  SHA512:
6
- metadata.gz: 58dbc07e0851f6a3c25a6a015918f4ebb2a6de582fa57f5df52f401e8679986cc8ad9b142d464bbafaa93424d8ecb206afdc88c53650b8a232fc77a485a7134a
7
- data.tar.gz: 55c0f354345a6bafd86befe0b438dea44a8d226fde384e054f1a5301bb05bb493ced3601f7e6c98a2f56c626ee226411c89f058e70f5f563042384f39b607700
6
+ metadata.gz: 4c440ab9dde7ed5d01655de10f295c43a27ae922b05093c1fd47bb4ddc861bd38ae1f75950b2f391c807ff0ae57337a09080e3945cfa0f3d7eadb0d8922fd1f2
7
+ data.tar.gz: 480337a2bfd9072f54ae5827c5b6facec0888d8610cf73558535d4038d7f1927c70949ec950cbc9ff1f8cd0ef6f14a3221ff7541ca9ec6fffdeb4c0d1778c763
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-transcoder_v1beta1
2
2
 
3
+ ### v0.3.0 (2021-02-23)
4
+
5
+ * Regenerated from discovery document revision 20210219
6
+
3
7
  ### v0.2.0 (2021-02-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20210129
@@ -196,12 +196,12 @@ module Google
196
196
  alias_method :low_boost?, :low_boost
197
197
 
198
198
  # Specify audio loudness normalization in loudness units relative to full scale (
199
- # LUFS). Enter a value between -24 and 0, where -24 is the Advanced Television
200
- # Systems Committee (ATSC A/85), -23 is the EU R128 broadcast standard, -19 is
201
- # the prior standard for online mono audio, -18 is the ReplayGain standard, -16
202
- # is the prior standard for stereo audio, -14 is the new online audio standard
203
- # recommended by Spotify, as well as Amazon Echo, and 0 disables normalization.
204
- # The default is 0.
199
+ # LUFS). Enter a value between -24 and 0 (the default), where: * -24 is the
200
+ # Advanced Television Systems Committee (ATSC A/85) standard * -23 is the EU
201
+ # R128 broadcast standard * -19 is the prior standard for online mono audio * -
202
+ # 18 is the ReplayGain standard * -16 is the prior standard for stereo audio * -
203
+ # 14 is the new online audio standard recommended by Spotify, as well as Amazon
204
+ # Echo * 0 disables normalization
205
205
  # Corresponds to the JSON property `lufs`
206
206
  # @return [Float]
207
207
  attr_accessor :lufs
@@ -1252,6 +1252,44 @@ module Google
1252
1252
  end
1253
1253
  end
1254
1254
 
1255
+ # Pad filter configuration for the input video. The padded input video is scaled
1256
+ # after padding with black to match the output resolution.
1257
+ class Pad
1258
+ include Google::Apis::Core::Hashable
1259
+
1260
+ # The number of pixels to add to the bottom. The default is 0.
1261
+ # Corresponds to the JSON property `bottomPixels`
1262
+ # @return [Fixnum]
1263
+ attr_accessor :bottom_pixels
1264
+
1265
+ # The number of pixels to add to the left. The default is 0.
1266
+ # Corresponds to the JSON property `leftPixels`
1267
+ # @return [Fixnum]
1268
+ attr_accessor :left_pixels
1269
+
1270
+ # The number of pixels to add to the right. The default is 0.
1271
+ # Corresponds to the JSON property `rightPixels`
1272
+ # @return [Fixnum]
1273
+ attr_accessor :right_pixels
1274
+
1275
+ # The number of pixels to add to the top. The default is 0.
1276
+ # Corresponds to the JSON property `topPixels`
1277
+ # @return [Fixnum]
1278
+ attr_accessor :top_pixels
1279
+
1280
+ def initialize(**args)
1281
+ update!(**args)
1282
+ end
1283
+
1284
+ # Update properties of this object
1285
+ def update!(**args)
1286
+ @bottom_pixels = args[:bottom_pixels] if args.key?(:bottom_pixels)
1287
+ @left_pixels = args[:left_pixels] if args.key?(:left_pixels)
1288
+ @right_pixels = args[:right_pixels] if args.key?(:right_pixels)
1289
+ @top_pixels = args[:top_pixels] if args.key?(:top_pixels)
1290
+ end
1291
+ end
1292
+
1255
1293
  # Preprocessing configurations.
1256
1294
  class PreprocessingConfig
1257
1295
  include Google::Apis::Core::Hashable
@@ -1282,6 +1320,12 @@ module Google
1282
1320
  # @return [Google::Apis::TranscoderV1beta1::Denoise]
1283
1321
  attr_accessor :denoise
1284
1322
 
1323
+ # Pad filter configuration for the input video. The padded input video is scaled
1324
+ # after padding with black to match the output resolution.
1325
+ # Corresponds to the JSON property `pad`
1326
+ # @return [Google::Apis::TranscoderV1beta1::Pad]
1327
+ attr_accessor :pad
1328
+
1285
1329
  def initialize(**args)
1286
1330
  update!(**args)
1287
1331
  end
@@ -1293,6 +1337,7 @@ module Google
1293
1337
  @crop = args[:crop] if args.key?(:crop)
1294
1338
  @deblock = args[:deblock] if args.key?(:deblock)
1295
1339
  @denoise = args[:denoise] if args.key?(:denoise)
1340
+ @pad = args[:pad] if args.key?(:pad)
1296
1341
  end
1297
1342
  end
1298
1343
 
@@ -1436,6 +1481,13 @@ module Google
1436
1481
  # @return [String]
1437
1482
  attr_accessor :interval
1438
1483
 
1484
+ # The quality of the generated sprite sheet. Enter a value between 1 and 100,
1485
+ # where 1 is the lowest quality and 100 is the highest quality. The default is
1486
+ # 100. A high quality value corresponds to a low image data compression ratio.
1487
+ # Corresponds to the JSON property `quality`
1488
+ # @return [Fixnum]
1489
+ attr_accessor :quality
1490
+
1439
1491
  # The maximum number of rows per sprite sheet. When the sprite sheet is full, a
1440
1492
  # new sprite sheet is created. The default is 0, which indicates no maximum
1441
1493
  # limit.
@@ -1476,6 +1528,7 @@ module Google
1476
1528
  @file_prefix = args[:file_prefix] if args.key?(:file_prefix)
1477
1529
  @format = args[:format] if args.key?(:format)
1478
1530
  @interval = args[:interval] if args.key?(:interval)
1531
+ @quality = args[:quality] if args.key?(:quality)
1479
1532
  @row_count = args[:row_count] if args.key?(:row_count)
1480
1533
  @sprite_height_pixels = args[:sprite_height_pixels] if args.key?(:sprite_height_pixels)
1481
1534
  @sprite_width_pixels = args[:sprite_width_pixels] if args.key?(:sprite_width_pixels)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module TranscoderV1beta1
18
18
  # Version of the google-apis-transcoder_v1beta1 gem
19
- GEM_VERSION = "0.2.0"
19
+ GEM_VERSION = "0.3.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.1.2"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210129"
25
+ REVISION = "20210219"
26
26
  end
27
27
  end
28
28
  end
@@ -232,6 +232,12 @@ module Google
232
232
  include Google::Apis::Core::JsonObjectSupport
233
233
  end
234
234
 
235
+ class Pad
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
235
241
  class PreprocessingConfig
236
242
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
243
 
@@ -654,6 +660,16 @@ module Google
654
660
  end
655
661
  end
656
662
 
663
+ class Pad
664
+ # @private
665
+ class Representation < Google::Apis::Core::JsonRepresentation
666
+ property :bottom_pixels, as: 'bottomPixels'
667
+ property :left_pixels, as: 'leftPixels'
668
+ property :right_pixels, as: 'rightPixels'
669
+ property :top_pixels, as: 'topPixels'
670
+ end
671
+ end
672
+
657
673
  class PreprocessingConfig
658
674
  # @private
659
675
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -667,6 +683,8 @@ module Google
667
683
 
668
684
  property :denoise, as: 'denoise', class: Google::Apis::TranscoderV1beta1::Denoise, decorator: Google::Apis::TranscoderV1beta1::Denoise::Representation
669
685
 
686
+ property :pad, as: 'pad', class: Google::Apis::TranscoderV1beta1::Pad, decorator: Google::Apis::TranscoderV1beta1::Pad::Representation
687
+
670
688
  end
671
689
  end
672
690
 
@@ -710,6 +728,7 @@ module Google
710
728
  property :file_prefix, as: 'filePrefix'
711
729
  property :format, as: 'format'
712
730
  property :interval, as: 'interval'
731
+ property :quality, as: 'quality'
713
732
  property :row_count, as: 'rowCount'
714
733
  property :sprite_height_pixels, as: 'spriteHeightPixels'
715
734
  property :sprite_width_pixels, as: 'spriteWidthPixels'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-transcoder_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.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: 2021-02-08 00:00:00.000000000 Z
11
+ date: 2021-03-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-transcoder_v1beta1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-transcoder_v1beta1/v0.2.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-transcoder_v1beta1/v0.3.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-transcoder_v1beta1
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.6
72
+ rubygems_version: 3.2.11
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Transcoder API V1beta1