google-apis-transcoder_v1 0.22.0 → 0.23.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: f64f94b2d7ceccc71c0e1acfffd6c1adc669465fa03533a855c90e48daa00c36
4
- data.tar.gz: e8c5ec7c8813439a33f49f56b0928bd8987e8e46f9e14716fa8276303b87f332
3
+ metadata.gz: 0d7e4003ab0872775b30e71e45ccec997db46b846bcc395845dd1e6956bd9196
4
+ data.tar.gz: 7f0c038ac7b3d080f0ad9eaa4fab769b75047425de557645ccd4019c751c3185
5
5
  SHA512:
6
- metadata.gz: 7e8650cb30e6ad6dab63330ac29eb6e304a3304a38240df8a17197a82a31cd1943e65b36f4168dc06e9f109b0650b014842c32e90a1fa3f9aaeaa85646aa7587
7
- data.tar.gz: 571ec0dc3058230cf6eb24e2ab3fd05c1068681feef54eb948fef79d9063e39d9190c0e1f081349480e284f276eeefbadf0d9a80dda8c255c4d5dc0300d6155f
6
+ metadata.gz: 685d6a89851d622856e0adb605c885f89b70278521bc67522fcc30553ba34c5cfc667f0065b2646d0c62025b67db61c2cb30e34056a418fece1bdf7ac7ff76f9
7
+ data.tar.gz: 6a0c4e8d050b6c464d957224531e76f85c44d955ccad895eed8a7719c351c026d36dd36119bb9b7a1576cf401d139a7753d28a5b09f685c65e43052c733ca72f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-transcoder_v1
2
2
 
3
+ ### v0.23.0 (2024-02-04)
4
+
5
+ * Regenerated from discovery document revision 20240124
6
+ * Regenerated using generator version 0.13.1
7
+
3
8
  ### v0.22.0 (2024-01-22)
4
9
 
5
10
  * Regenerated using generator version 0.13.0
@@ -869,6 +869,11 @@ module Google
869
869
  # @return [Fixnum]
870
870
  attr_accessor :height_pixels
871
871
 
872
+ # Convert the input video to a Hybrid Log Gamma (HLG) video.
873
+ # Corresponds to the JSON property `hlg`
874
+ # @return [Google::Apis::TranscoderV1::H264ColorFormatHlg]
875
+ attr_accessor :hlg
876
+
872
877
  # Pixel format to use. The default is `yuv420p`. Supported pixel formats: - `
873
878
  # yuv420p` pixel format - `yuv422p` pixel format - `yuv444p` pixel format - `
874
879
  # yuv420p10` 10-bit HDR pixel format - `yuv422p10` 10-bit HDR pixel format - `
@@ -901,6 +906,11 @@ module Google
901
906
  # @return [String]
902
907
  attr_accessor :rate_control_mode
903
908
 
909
+ # Convert the input video to a Standard Dynamic Range (SDR) video.
910
+ # Corresponds to the JSON property `sdr`
911
+ # @return [Google::Apis::TranscoderV1::H264ColorFormatSdr]
912
+ attr_accessor :sdr
913
+
904
914
  # Enforces the specified codec tune. The available options are [FFmpeg-
905
915
  # compatible](https://trac.ffmpeg.org/wiki/Encode/H.264#Tune). Note that certain
906
916
  # values for this field may cause the transcoder to override other fields you
@@ -951,10 +961,12 @@ module Google
951
961
  @gop_duration = args[:gop_duration] if args.key?(:gop_duration)
952
962
  @gop_frame_count = args[:gop_frame_count] if args.key?(:gop_frame_count)
953
963
  @height_pixels = args[:height_pixels] if args.key?(:height_pixels)
964
+ @hlg = args[:hlg] if args.key?(:hlg)
954
965
  @pixel_format = args[:pixel_format] if args.key?(:pixel_format)
955
966
  @preset = args[:preset] if args.key?(:preset)
956
967
  @profile = args[:profile] if args.key?(:profile)
957
968
  @rate_control_mode = args[:rate_control_mode] if args.key?(:rate_control_mode)
969
+ @sdr = args[:sdr] if args.key?(:sdr)
958
970
  @tune = args[:tune] if args.key?(:tune)
959
971
  @vbv_fullness_bits = args[:vbv_fullness_bits] if args.key?(:vbv_fullness_bits)
960
972
  @vbv_size_bits = args[:vbv_size_bits] if args.key?(:vbv_size_bits)
@@ -962,6 +974,32 @@ module Google
962
974
  end
963
975
  end
964
976
 
977
+ # Convert the input video to a Hybrid Log Gamma (HLG) video.
978
+ class H264ColorFormatHlg
979
+ include Google::Apis::Core::Hashable
980
+
981
+ def initialize(**args)
982
+ update!(**args)
983
+ end
984
+
985
+ # Update properties of this object
986
+ def update!(**args)
987
+ end
988
+ end
989
+
990
+ # Convert the input video to a Standard Dynamic Range (SDR) video.
991
+ class H264ColorFormatSdr
992
+ include Google::Apis::Core::Hashable
993
+
994
+ def initialize(**args)
995
+ update!(**args)
996
+ end
997
+
998
+ # Update properties of this object
999
+ def update!(**args)
1000
+ end
1001
+ end
1002
+
965
1003
  # H265 codec settings.
966
1004
  class H265CodecSettings
967
1005
  include Google::Apis::Core::Hashable
@@ -1036,6 +1074,11 @@ module Google
1036
1074
  # @return [Fixnum]
1037
1075
  attr_accessor :gop_frame_count
1038
1076
 
1077
+ # Convert the input video to a High Dynamic Range 10 (HDR10) video.
1078
+ # Corresponds to the JSON property `hdr10`
1079
+ # @return [Google::Apis::TranscoderV1::H265ColorFormatHdr10]
1080
+ attr_accessor :hdr10
1081
+
1039
1082
  # The height of the video in pixels. Must be an even integer. When not specified,
1040
1083
  # the height is adjusted to match the specified width and input aspect ratio.
1041
1084
  # If both are omitted, the input height is used. For portrait videos that
@@ -1047,6 +1090,11 @@ module Google
1047
1090
  # @return [Fixnum]
1048
1091
  attr_accessor :height_pixels
1049
1092
 
1093
+ # Convert the input video to a Hybrid Log Gamma (HLG) video.
1094
+ # Corresponds to the JSON property `hlg`
1095
+ # @return [Google::Apis::TranscoderV1::H265ColorFormatHlg]
1096
+ attr_accessor :hlg
1097
+
1050
1098
  # Pixel format to use. The default is `yuv420p`. Supported pixel formats: - `
1051
1099
  # yuv420p` pixel format - `yuv422p` pixel format - `yuv444p` pixel format - `
1052
1100
  # yuv420p10` 10-bit HDR pixel format - `yuv422p10` 10-bit HDR pixel format - `
@@ -1082,6 +1130,11 @@ module Google
1082
1130
  # @return [String]
1083
1131
  attr_accessor :rate_control_mode
1084
1132
 
1133
+ # Convert the input video to a Standard Dynamic Range (SDR) video.
1134
+ # Corresponds to the JSON property `sdr`
1135
+ # @return [Google::Apis::TranscoderV1::H265ColorFormatSdr]
1136
+ attr_accessor :sdr
1137
+
1085
1138
  # Enforces the specified codec tune. The available options are [FFmpeg-
1086
1139
  # compatible](https://trac.ffmpeg.org/wiki/Encode/H.265). Note that certain
1087
1140
  # values for this field may cause the transcoder to override other fields you
@@ -1130,11 +1183,14 @@ module Google
1130
1183
  @frame_rate = args[:frame_rate] if args.key?(:frame_rate)
1131
1184
  @gop_duration = args[:gop_duration] if args.key?(:gop_duration)
1132
1185
  @gop_frame_count = args[:gop_frame_count] if args.key?(:gop_frame_count)
1186
+ @hdr10 = args[:hdr10] if args.key?(:hdr10)
1133
1187
  @height_pixels = args[:height_pixels] if args.key?(:height_pixels)
1188
+ @hlg = args[:hlg] if args.key?(:hlg)
1134
1189
  @pixel_format = args[:pixel_format] if args.key?(:pixel_format)
1135
1190
  @preset = args[:preset] if args.key?(:preset)
1136
1191
  @profile = args[:profile] if args.key?(:profile)
1137
1192
  @rate_control_mode = args[:rate_control_mode] if args.key?(:rate_control_mode)
1193
+ @sdr = args[:sdr] if args.key?(:sdr)
1138
1194
  @tune = args[:tune] if args.key?(:tune)
1139
1195
  @vbv_fullness_bits = args[:vbv_fullness_bits] if args.key?(:vbv_fullness_bits)
1140
1196
  @vbv_size_bits = args[:vbv_size_bits] if args.key?(:vbv_size_bits)
@@ -1142,6 +1198,45 @@ module Google
1142
1198
  end
1143
1199
  end
1144
1200
 
1201
+ # Convert the input video to a High Dynamic Range 10 (HDR10) video.
1202
+ class H265ColorFormatHdr10
1203
+ include Google::Apis::Core::Hashable
1204
+
1205
+ def initialize(**args)
1206
+ update!(**args)
1207
+ end
1208
+
1209
+ # Update properties of this object
1210
+ def update!(**args)
1211
+ end
1212
+ end
1213
+
1214
+ # Convert the input video to a Hybrid Log Gamma (HLG) video.
1215
+ class H265ColorFormatHlg
1216
+ include Google::Apis::Core::Hashable
1217
+
1218
+ def initialize(**args)
1219
+ update!(**args)
1220
+ end
1221
+
1222
+ # Update properties of this object
1223
+ def update!(**args)
1224
+ end
1225
+ end
1226
+
1227
+ # Convert the input video to a Standard Dynamic Range (SDR) video.
1228
+ class H265ColorFormatSdr
1229
+ include Google::Apis::Core::Hashable
1230
+
1231
+ def initialize(**args)
1232
+ update!(**args)
1233
+ end
1234
+
1235
+ # Update properties of this object
1236
+ def update!(**args)
1237
+ end
1238
+ end
1239
+
1145
1240
  # Overlaid image.
1146
1241
  class Image
1147
1242
  include Google::Apis::Core::Hashable
@@ -2203,6 +2298,11 @@ module Google
2203
2298
  # @return [Fixnum]
2204
2299
  attr_accessor :height_pixels
2205
2300
 
2301
+ # Convert the input video to a Hybrid Log Gamma (HLG) video.
2302
+ # Corresponds to the JSON property `hlg`
2303
+ # @return [Google::Apis::TranscoderV1::Vp9ColorFormatHlg]
2304
+ attr_accessor :hlg
2305
+
2206
2306
  # Pixel format to use. The default is `yuv420p`. Supported pixel formats: - `
2207
2307
  # yuv420p` pixel format - `yuv422p` pixel format - `yuv444p` pixel format - `
2208
2308
  # yuv420p10` 10-bit HDR pixel format - `yuv422p10` 10-bit HDR pixel format - `
@@ -2227,6 +2327,11 @@ module Google
2227
2327
  # @return [String]
2228
2328
  attr_accessor :rate_control_mode
2229
2329
 
2330
+ # Convert the input video to a Standard Dynamic Range (SDR) video.
2331
+ # Corresponds to the JSON property `sdr`
2332
+ # @return [Google::Apis::TranscoderV1::Vp9ColorFormatSdr]
2333
+ attr_accessor :sdr
2334
+
2230
2335
  # The width of the video in pixels. Must be an even integer. When not specified,
2231
2336
  # the width is adjusted to match the specified height and input aspect ratio. If
2232
2337
  # both are omitted, the input width is used. For portrait videos that contain
@@ -2250,13 +2355,41 @@ module Google
2250
2355
  @gop_duration = args[:gop_duration] if args.key?(:gop_duration)
2251
2356
  @gop_frame_count = args[:gop_frame_count] if args.key?(:gop_frame_count)
2252
2357
  @height_pixels = args[:height_pixels] if args.key?(:height_pixels)
2358
+ @hlg = args[:hlg] if args.key?(:hlg)
2253
2359
  @pixel_format = args[:pixel_format] if args.key?(:pixel_format)
2254
2360
  @profile = args[:profile] if args.key?(:profile)
2255
2361
  @rate_control_mode = args[:rate_control_mode] if args.key?(:rate_control_mode)
2362
+ @sdr = args[:sdr] if args.key?(:sdr)
2256
2363
  @width_pixels = args[:width_pixels] if args.key?(:width_pixels)
2257
2364
  end
2258
2365
  end
2259
2366
 
2367
+ # Convert the input video to a Hybrid Log Gamma (HLG) video.
2368
+ class Vp9ColorFormatHlg
2369
+ include Google::Apis::Core::Hashable
2370
+
2371
+ def initialize(**args)
2372
+ update!(**args)
2373
+ end
2374
+
2375
+ # Update properties of this object
2376
+ def update!(**args)
2377
+ end
2378
+ end
2379
+
2380
+ # Convert the input video to a Standard Dynamic Range (SDR) video.
2381
+ class Vp9ColorFormatSdr
2382
+ include Google::Apis::Core::Hashable
2383
+
2384
+ def initialize(**args)
2385
+ update!(**args)
2386
+ end
2387
+
2388
+ # Update properties of this object
2389
+ def update!(**args)
2390
+ end
2391
+ end
2392
+
2260
2393
  # Widevine configuration.
2261
2394
  class Widevine
2262
2395
  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.22.0"
19
+ GEM_VERSION = "0.23.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.0"
22
+ GENERATOR_VERSION = "0.13.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230906"
25
+ REVISION = "20240124"
26
26
  end
27
27
  end
28
28
  end
@@ -172,12 +172,42 @@ module Google
172
172
  include Google::Apis::Core::JsonObjectSupport
173
173
  end
174
174
 
175
+ class H264ColorFormatHlg
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
181
+ class H264ColorFormatSdr
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
175
187
  class H265CodecSettings
176
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
189
 
178
190
  include Google::Apis::Core::JsonObjectSupport
179
191
  end
180
192
 
193
+ class H265ColorFormatHdr10
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
199
+ class H265ColorFormatHlg
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
205
+ class H265ColorFormatSdr
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
181
211
  class Image
182
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
213
 
@@ -334,6 +364,18 @@ module Google
334
364
  include Google::Apis::Core::JsonObjectSupport
335
365
  end
336
366
 
367
+ class Vp9ColorFormatHlg
368
+ class Representation < Google::Apis::Core::JsonRepresentation; end
369
+
370
+ include Google::Apis::Core::JsonObjectSupport
371
+ end
372
+
373
+ class Vp9ColorFormatSdr
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
337
379
  class Widevine
338
380
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
381
 
@@ -589,10 +631,14 @@ module Google
589
631
  property :gop_duration, as: 'gopDuration'
590
632
  property :gop_frame_count, as: 'gopFrameCount'
591
633
  property :height_pixels, as: 'heightPixels'
634
+ property :hlg, as: 'hlg', class: Google::Apis::TranscoderV1::H264ColorFormatHlg, decorator: Google::Apis::TranscoderV1::H264ColorFormatHlg::Representation
635
+
592
636
  property :pixel_format, as: 'pixelFormat'
593
637
  property :preset, as: 'preset'
594
638
  property :profile, as: 'profile'
595
639
  property :rate_control_mode, as: 'rateControlMode'
640
+ property :sdr, as: 'sdr', class: Google::Apis::TranscoderV1::H264ColorFormatSdr, decorator: Google::Apis::TranscoderV1::H264ColorFormatSdr::Representation
641
+
596
642
  property :tune, as: 'tune'
597
643
  property :vbv_fullness_bits, as: 'vbvFullnessBits'
598
644
  property :vbv_size_bits, as: 'vbvSizeBits'
@@ -600,6 +646,18 @@ module Google
600
646
  end
601
647
  end
602
648
 
649
+ class H264ColorFormatHlg
650
+ # @private
651
+ class Representation < Google::Apis::Core::JsonRepresentation
652
+ end
653
+ end
654
+
655
+ class H264ColorFormatSdr
656
+ # @private
657
+ class Representation < Google::Apis::Core::JsonRepresentation
658
+ end
659
+ end
660
+
603
661
  class H265CodecSettings
604
662
  # @private
605
663
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -613,11 +671,17 @@ module Google
613
671
  property :frame_rate, as: 'frameRate'
614
672
  property :gop_duration, as: 'gopDuration'
615
673
  property :gop_frame_count, as: 'gopFrameCount'
674
+ property :hdr10, as: 'hdr10', class: Google::Apis::TranscoderV1::H265ColorFormatHdr10, decorator: Google::Apis::TranscoderV1::H265ColorFormatHdr10::Representation
675
+
616
676
  property :height_pixels, as: 'heightPixels'
677
+ property :hlg, as: 'hlg', class: Google::Apis::TranscoderV1::H265ColorFormatHlg, decorator: Google::Apis::TranscoderV1::H265ColorFormatHlg::Representation
678
+
617
679
  property :pixel_format, as: 'pixelFormat'
618
680
  property :preset, as: 'preset'
619
681
  property :profile, as: 'profile'
620
682
  property :rate_control_mode, as: 'rateControlMode'
683
+ property :sdr, as: 'sdr', class: Google::Apis::TranscoderV1::H265ColorFormatSdr, decorator: Google::Apis::TranscoderV1::H265ColorFormatSdr::Representation
684
+
621
685
  property :tune, as: 'tune'
622
686
  property :vbv_fullness_bits, as: 'vbvFullnessBits'
623
687
  property :vbv_size_bits, as: 'vbvSizeBits'
@@ -625,6 +689,24 @@ module Google
625
689
  end
626
690
  end
627
691
 
692
+ class H265ColorFormatHdr10
693
+ # @private
694
+ class Representation < Google::Apis::Core::JsonRepresentation
695
+ end
696
+ end
697
+
698
+ class H265ColorFormatHlg
699
+ # @private
700
+ class Representation < Google::Apis::Core::JsonRepresentation
701
+ end
702
+ end
703
+
704
+ class H265ColorFormatSdr
705
+ # @private
706
+ class Representation < Google::Apis::Core::JsonRepresentation
707
+ end
708
+ end
709
+
628
710
  class Image
629
711
  # @private
630
712
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -915,13 +997,29 @@ module Google
915
997
  property :gop_duration, as: 'gopDuration'
916
998
  property :gop_frame_count, as: 'gopFrameCount'
917
999
  property :height_pixels, as: 'heightPixels'
1000
+ property :hlg, as: 'hlg', class: Google::Apis::TranscoderV1::Vp9ColorFormatHlg, decorator: Google::Apis::TranscoderV1::Vp9ColorFormatHlg::Representation
1001
+
918
1002
  property :pixel_format, as: 'pixelFormat'
919
1003
  property :profile, as: 'profile'
920
1004
  property :rate_control_mode, as: 'rateControlMode'
1005
+ property :sdr, as: 'sdr', class: Google::Apis::TranscoderV1::Vp9ColorFormatSdr, decorator: Google::Apis::TranscoderV1::Vp9ColorFormatSdr::Representation
1006
+
921
1007
  property :width_pixels, as: 'widthPixels'
922
1008
  end
923
1009
  end
924
1010
 
1011
+ class Vp9ColorFormatHlg
1012
+ # @private
1013
+ class Representation < Google::Apis::Core::JsonRepresentation
1014
+ end
1015
+ end
1016
+
1017
+ class Vp9ColorFormatSdr
1018
+ # @private
1019
+ class Representation < Google::Apis::Core::JsonRepresentation
1020
+ end
1021
+ end
1022
+
925
1023
  class Widevine
926
1024
  # @private
927
1025
  class Representation < Google::Apis::Core::JsonRepresentation
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.22.0
4
+ version: 0.23.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: 2024-01-23 00:00:00.000000000 Z
11
+ date: 2024-02-04 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.22.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-transcoder_v1/v0.23.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: []