google-apis-transcoder_v1 0.22.0 → 0.24.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f64f94b2d7ceccc71c0e1acfffd6c1adc669465fa03533a855c90e48daa00c36
4
- data.tar.gz: e8c5ec7c8813439a33f49f56b0928bd8987e8e46f9e14716fa8276303b87f332
3
+ metadata.gz: 60e640aea2c35765daa0f2bb9760b5f9ed2d40f09ea9c81d0944b90dec9f85a5
4
+ data.tar.gz: 0cb2667598684fbbd8b985e0390ada6c3775c689f005c40699c8fff113438c02
5
5
  SHA512:
6
- metadata.gz: 7e8650cb30e6ad6dab63330ac29eb6e304a3304a38240df8a17197a82a31cd1943e65b36f4168dc06e9f109b0650b014842c32e90a1fa3f9aaeaa85646aa7587
7
- data.tar.gz: 571ec0dc3058230cf6eb24e2ab3fd05c1068681feef54eb948fef79d9063e39d9190c0e1f081349480e284f276eeefbadf0d9a80dda8c255c4d5dc0300d6155f
6
+ metadata.gz: 0ba7644e4b381feb1bca190cedf01849f4730265802aa447abf15e8b695d6173c5f2cee4d426f90fdf238789f2e1d17eeb94c9780e671e002df92e3a3f72fab3
7
+ data.tar.gz: ca8ff42eb3b9d663ebb27ff4e7fbe97d320cc33a079b9779a0e46a2e1724bf0cfacdc04802a42e241b209ea9af7a345df47a3f39e67a3f76cae544690f423a9f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-transcoder_v1
2
2
 
3
+ ### v0.24.0 (2024-02-18)
4
+
5
+ * Regenerated from discovery document revision 20240207
6
+
7
+ ### v0.23.0 (2024-02-04)
8
+
9
+ * Regenerated from discovery document revision 20240124
10
+ * Regenerated using generator version 0.13.1
11
+
3
12
  ### v0.22.0 (2024-01-22)
4
13
 
5
14
  * Regenerated using generator version 0.13.0
@@ -835,15 +835,17 @@ module Google
835
835
  attr_accessor :entropy_coder
836
836
 
837
837
  # Required. The target video frame rate in frames per second (FPS). Must be less
838
- # than or equal to 120. Will default to the input frame rate if larger than the
839
- # input frame rate. The API will generate an output FPS that is divisible by the
840
- # input FPS, and smaller or equal to the target FPS. See [Calculating frame rate]
841
- # (https://cloud.google.com/transcoder/docs/concepts/frame-rate) for more
842
- # information.
838
+ # than or equal to 120.
843
839
  # Corresponds to the JSON property `frameRate`
844
840
  # @return [Float]
845
841
  attr_accessor :frame_rate
846
842
 
843
+ # Optional. Frame rate conversion strategy for desired frame rate. The default
844
+ # is `DOWNSAMPLE`.
845
+ # Corresponds to the JSON property `frameRateConversionStrategy`
846
+ # @return [String]
847
+ attr_accessor :frame_rate_conversion_strategy
848
+
847
849
  # Select the GOP size based on the specified duration. The default is `3s`. Note
848
850
  # that `gopDuration` must be less than or equal to [`segmentDuration`](#
849
851
  # SegmentSettings), and [`segmentDuration`](#SegmentSettings) must be divisible
@@ -869,6 +871,11 @@ module Google
869
871
  # @return [Fixnum]
870
872
  attr_accessor :height_pixels
871
873
 
874
+ # Convert the input video to a Hybrid Log Gamma (HLG) video.
875
+ # Corresponds to the JSON property `hlg`
876
+ # @return [Google::Apis::TranscoderV1::H264ColorFormatHlg]
877
+ attr_accessor :hlg
878
+
872
879
  # Pixel format to use. The default is `yuv420p`. Supported pixel formats: - `
873
880
  # yuv420p` pixel format - `yuv422p` pixel format - `yuv444p` pixel format - `
874
881
  # yuv420p10` 10-bit HDR pixel format - `yuv422p10` 10-bit HDR pixel format - `
@@ -901,6 +908,11 @@ module Google
901
908
  # @return [String]
902
909
  attr_accessor :rate_control_mode
903
910
 
911
+ # Convert the input video to a Standard Dynamic Range (SDR) video.
912
+ # Corresponds to the JSON property `sdr`
913
+ # @return [Google::Apis::TranscoderV1::H264ColorFormatSdr]
914
+ attr_accessor :sdr
915
+
904
916
  # Enforces the specified codec tune. The available options are [FFmpeg-
905
917
  # compatible](https://trac.ffmpeg.org/wiki/Encode/H.264#Tune). Note that certain
906
918
  # values for this field may cause the transcoder to override other fields you
@@ -948,13 +960,16 @@ module Google
948
960
  @enable_two_pass = args[:enable_two_pass] if args.key?(:enable_two_pass)
949
961
  @entropy_coder = args[:entropy_coder] if args.key?(:entropy_coder)
950
962
  @frame_rate = args[:frame_rate] if args.key?(:frame_rate)
963
+ @frame_rate_conversion_strategy = args[:frame_rate_conversion_strategy] if args.key?(:frame_rate_conversion_strategy)
951
964
  @gop_duration = args[:gop_duration] if args.key?(:gop_duration)
952
965
  @gop_frame_count = args[:gop_frame_count] if args.key?(:gop_frame_count)
953
966
  @height_pixels = args[:height_pixels] if args.key?(:height_pixels)
967
+ @hlg = args[:hlg] if args.key?(:hlg)
954
968
  @pixel_format = args[:pixel_format] if args.key?(:pixel_format)
955
969
  @preset = args[:preset] if args.key?(:preset)
956
970
  @profile = args[:profile] if args.key?(:profile)
957
971
  @rate_control_mode = args[:rate_control_mode] if args.key?(:rate_control_mode)
972
+ @sdr = args[:sdr] if args.key?(:sdr)
958
973
  @tune = args[:tune] if args.key?(:tune)
959
974
  @vbv_fullness_bits = args[:vbv_fullness_bits] if args.key?(:vbv_fullness_bits)
960
975
  @vbv_size_bits = args[:vbv_size_bits] if args.key?(:vbv_size_bits)
@@ -962,6 +977,32 @@ module Google
962
977
  end
963
978
  end
964
979
 
980
+ # Convert the input video to a Hybrid Log Gamma (HLG) video.
981
+ class H264ColorFormatHlg
982
+ include Google::Apis::Core::Hashable
983
+
984
+ def initialize(**args)
985
+ update!(**args)
986
+ end
987
+
988
+ # Update properties of this object
989
+ def update!(**args)
990
+ end
991
+ end
992
+
993
+ # Convert the input video to a Standard Dynamic Range (SDR) video.
994
+ class H264ColorFormatSdr
995
+ include Google::Apis::Core::Hashable
996
+
997
+ def initialize(**args)
998
+ update!(**args)
999
+ end
1000
+
1001
+ # Update properties of this object
1002
+ def update!(**args)
1003
+ end
1004
+ end
1005
+
965
1006
  # H265 codec settings.
966
1007
  class H265CodecSettings
967
1008
  include Google::Apis::Core::Hashable
@@ -1013,15 +1054,17 @@ module Google
1013
1054
  alias_method :enable_two_pass?, :enable_two_pass
1014
1055
 
1015
1056
  # Required. The target video frame rate in frames per second (FPS). Must be less
1016
- # than or equal to 120. Will default to the input frame rate if larger than the
1017
- # input frame rate. The API will generate an output FPS that is divisible by the
1018
- # input FPS, and smaller or equal to the target FPS. See [Calculating frame rate]
1019
- # (https://cloud.google.com/transcoder/docs/concepts/frame-rate) for more
1020
- # information.
1057
+ # than or equal to 120.
1021
1058
  # Corresponds to the JSON property `frameRate`
1022
1059
  # @return [Float]
1023
1060
  attr_accessor :frame_rate
1024
1061
 
1062
+ # Optional. Frame rate conversion strategy for desired frame rate. The default
1063
+ # is `DOWNSAMPLE`.
1064
+ # Corresponds to the JSON property `frameRateConversionStrategy`
1065
+ # @return [String]
1066
+ attr_accessor :frame_rate_conversion_strategy
1067
+
1025
1068
  # Select the GOP size based on the specified duration. The default is `3s`. Note
1026
1069
  # that `gopDuration` must be less than or equal to [`segmentDuration`](#
1027
1070
  # SegmentSettings), and [`segmentDuration`](#SegmentSettings) must be divisible
@@ -1036,6 +1079,11 @@ module Google
1036
1079
  # @return [Fixnum]
1037
1080
  attr_accessor :gop_frame_count
1038
1081
 
1082
+ # Convert the input video to a High Dynamic Range 10 (HDR10) video.
1083
+ # Corresponds to the JSON property `hdr10`
1084
+ # @return [Google::Apis::TranscoderV1::H265ColorFormatHdr10]
1085
+ attr_accessor :hdr10
1086
+
1039
1087
  # The height of the video in pixels. Must be an even integer. When not specified,
1040
1088
  # the height is adjusted to match the specified width and input aspect ratio.
1041
1089
  # If both are omitted, the input height is used. For portrait videos that
@@ -1047,6 +1095,11 @@ module Google
1047
1095
  # @return [Fixnum]
1048
1096
  attr_accessor :height_pixels
1049
1097
 
1098
+ # Convert the input video to a Hybrid Log Gamma (HLG) video.
1099
+ # Corresponds to the JSON property `hlg`
1100
+ # @return [Google::Apis::TranscoderV1::H265ColorFormatHlg]
1101
+ attr_accessor :hlg
1102
+
1050
1103
  # Pixel format to use. The default is `yuv420p`. Supported pixel formats: - `
1051
1104
  # yuv420p` pixel format - `yuv422p` pixel format - `yuv444p` pixel format - `
1052
1105
  # yuv420p10` 10-bit HDR pixel format - `yuv422p10` 10-bit HDR pixel format - `
@@ -1082,6 +1135,11 @@ module Google
1082
1135
  # @return [String]
1083
1136
  attr_accessor :rate_control_mode
1084
1137
 
1138
+ # Convert the input video to a Standard Dynamic Range (SDR) video.
1139
+ # Corresponds to the JSON property `sdr`
1140
+ # @return [Google::Apis::TranscoderV1::H265ColorFormatSdr]
1141
+ attr_accessor :sdr
1142
+
1085
1143
  # Enforces the specified codec tune. The available options are [FFmpeg-
1086
1144
  # compatible](https://trac.ffmpeg.org/wiki/Encode/H.265). Note that certain
1087
1145
  # values for this field may cause the transcoder to override other fields you
@@ -1128,13 +1186,17 @@ module Google
1128
1186
  @crf_level = args[:crf_level] if args.key?(:crf_level)
1129
1187
  @enable_two_pass = args[:enable_two_pass] if args.key?(:enable_two_pass)
1130
1188
  @frame_rate = args[:frame_rate] if args.key?(:frame_rate)
1189
+ @frame_rate_conversion_strategy = args[:frame_rate_conversion_strategy] if args.key?(:frame_rate_conversion_strategy)
1131
1190
  @gop_duration = args[:gop_duration] if args.key?(:gop_duration)
1132
1191
  @gop_frame_count = args[:gop_frame_count] if args.key?(:gop_frame_count)
1192
+ @hdr10 = args[:hdr10] if args.key?(:hdr10)
1133
1193
  @height_pixels = args[:height_pixels] if args.key?(:height_pixels)
1194
+ @hlg = args[:hlg] if args.key?(:hlg)
1134
1195
  @pixel_format = args[:pixel_format] if args.key?(:pixel_format)
1135
1196
  @preset = args[:preset] if args.key?(:preset)
1136
1197
  @profile = args[:profile] if args.key?(:profile)
1137
1198
  @rate_control_mode = args[:rate_control_mode] if args.key?(:rate_control_mode)
1199
+ @sdr = args[:sdr] if args.key?(:sdr)
1138
1200
  @tune = args[:tune] if args.key?(:tune)
1139
1201
  @vbv_fullness_bits = args[:vbv_fullness_bits] if args.key?(:vbv_fullness_bits)
1140
1202
  @vbv_size_bits = args[:vbv_size_bits] if args.key?(:vbv_size_bits)
@@ -1142,6 +1204,45 @@ module Google
1142
1204
  end
1143
1205
  end
1144
1206
 
1207
+ # Convert the input video to a High Dynamic Range 10 (HDR10) video.
1208
+ class H265ColorFormatHdr10
1209
+ include Google::Apis::Core::Hashable
1210
+
1211
+ def initialize(**args)
1212
+ update!(**args)
1213
+ end
1214
+
1215
+ # Update properties of this object
1216
+ def update!(**args)
1217
+ end
1218
+ end
1219
+
1220
+ # Convert the input video to a Hybrid Log Gamma (HLG) video.
1221
+ class H265ColorFormatHlg
1222
+ include Google::Apis::Core::Hashable
1223
+
1224
+ def initialize(**args)
1225
+ update!(**args)
1226
+ end
1227
+
1228
+ # Update properties of this object
1229
+ def update!(**args)
1230
+ end
1231
+ end
1232
+
1233
+ # Convert the input video to a Standard Dynamic Range (SDR) video.
1234
+ class H265ColorFormatSdr
1235
+ include Google::Apis::Core::Hashable
1236
+
1237
+ def initialize(**args)
1238
+ update!(**args)
1239
+ end
1240
+
1241
+ # Update properties of this object
1242
+ def update!(**args)
1243
+ end
1244
+ end
1245
+
1145
1246
  # Overlaid image.
1146
1247
  class Image
1147
1248
  include Google::Apis::Core::Hashable
@@ -2169,15 +2270,17 @@ module Google
2169
2270
  attr_accessor :crf_level
2170
2271
 
2171
2272
  # Required. The target video frame rate in frames per second (FPS). Must be less
2172
- # than or equal to 120. Will default to the input frame rate if larger than the
2173
- # input frame rate. The API will generate an output FPS that is divisible by the
2174
- # input FPS, and smaller or equal to the target FPS. See [Calculating frame rate]
2175
- # (https://cloud.google.com/transcoder/docs/concepts/frame-rate) for more
2176
- # information.
2273
+ # than or equal to 120.
2177
2274
  # Corresponds to the JSON property `frameRate`
2178
2275
  # @return [Float]
2179
2276
  attr_accessor :frame_rate
2180
2277
 
2278
+ # Optional. Frame rate conversion strategy for desired frame rate. The default
2279
+ # is `DOWNSAMPLE`.
2280
+ # Corresponds to the JSON property `frameRateConversionStrategy`
2281
+ # @return [String]
2282
+ attr_accessor :frame_rate_conversion_strategy
2283
+
2181
2284
  # Select the GOP size based on the specified duration. The default is `3s`. Note
2182
2285
  # that `gopDuration` must be less than or equal to [`segmentDuration`](#
2183
2286
  # SegmentSettings), and [`segmentDuration`](#SegmentSettings) must be divisible
@@ -2203,6 +2306,11 @@ module Google
2203
2306
  # @return [Fixnum]
2204
2307
  attr_accessor :height_pixels
2205
2308
 
2309
+ # Convert the input video to a Hybrid Log Gamma (HLG) video.
2310
+ # Corresponds to the JSON property `hlg`
2311
+ # @return [Google::Apis::TranscoderV1::Vp9ColorFormatHlg]
2312
+ attr_accessor :hlg
2313
+
2206
2314
  # Pixel format to use. The default is `yuv420p`. Supported pixel formats: - `
2207
2315
  # yuv420p` pixel format - `yuv422p` pixel format - `yuv444p` pixel format - `
2208
2316
  # yuv420p10` 10-bit HDR pixel format - `yuv422p10` 10-bit HDR pixel format - `
@@ -2227,6 +2335,11 @@ module Google
2227
2335
  # @return [String]
2228
2336
  attr_accessor :rate_control_mode
2229
2337
 
2338
+ # Convert the input video to a Standard Dynamic Range (SDR) video.
2339
+ # Corresponds to the JSON property `sdr`
2340
+ # @return [Google::Apis::TranscoderV1::Vp9ColorFormatSdr]
2341
+ attr_accessor :sdr
2342
+
2230
2343
  # The width of the video in pixels. Must be an even integer. When not specified,
2231
2344
  # the width is adjusted to match the specified height and input aspect ratio. If
2232
2345
  # both are omitted, the input width is used. For portrait videos that contain
@@ -2247,16 +2360,45 @@ module Google
2247
2360
  @bitrate_bps = args[:bitrate_bps] if args.key?(:bitrate_bps)
2248
2361
  @crf_level = args[:crf_level] if args.key?(:crf_level)
2249
2362
  @frame_rate = args[:frame_rate] if args.key?(:frame_rate)
2363
+ @frame_rate_conversion_strategy = args[:frame_rate_conversion_strategy] if args.key?(:frame_rate_conversion_strategy)
2250
2364
  @gop_duration = args[:gop_duration] if args.key?(:gop_duration)
2251
2365
  @gop_frame_count = args[:gop_frame_count] if args.key?(:gop_frame_count)
2252
2366
  @height_pixels = args[:height_pixels] if args.key?(:height_pixels)
2367
+ @hlg = args[:hlg] if args.key?(:hlg)
2253
2368
  @pixel_format = args[:pixel_format] if args.key?(:pixel_format)
2254
2369
  @profile = args[:profile] if args.key?(:profile)
2255
2370
  @rate_control_mode = args[:rate_control_mode] if args.key?(:rate_control_mode)
2371
+ @sdr = args[:sdr] if args.key?(:sdr)
2256
2372
  @width_pixels = args[:width_pixels] if args.key?(:width_pixels)
2257
2373
  end
2258
2374
  end
2259
2375
 
2376
+ # Convert the input video to a Hybrid Log Gamma (HLG) video.
2377
+ class Vp9ColorFormatHlg
2378
+ include Google::Apis::Core::Hashable
2379
+
2380
+ def initialize(**args)
2381
+ update!(**args)
2382
+ end
2383
+
2384
+ # Update properties of this object
2385
+ def update!(**args)
2386
+ end
2387
+ end
2388
+
2389
+ # Convert the input video to a Standard Dynamic Range (SDR) video.
2390
+ class Vp9ColorFormatSdr
2391
+ include Google::Apis::Core::Hashable
2392
+
2393
+ def initialize(**args)
2394
+ update!(**args)
2395
+ end
2396
+
2397
+ # Update properties of this object
2398
+ def update!(**args)
2399
+ end
2400
+ end
2401
+
2260
2402
  # Widevine configuration.
2261
2403
  class Widevine
2262
2404
  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.24.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 = "20240207"
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
 
@@ -586,13 +628,18 @@ module Google
586
628
  property :enable_two_pass, as: 'enableTwoPass'
587
629
  property :entropy_coder, as: 'entropyCoder'
588
630
  property :frame_rate, as: 'frameRate'
631
+ property :frame_rate_conversion_strategy, as: 'frameRateConversionStrategy'
589
632
  property :gop_duration, as: 'gopDuration'
590
633
  property :gop_frame_count, as: 'gopFrameCount'
591
634
  property :height_pixels, as: 'heightPixels'
635
+ property :hlg, as: 'hlg', class: Google::Apis::TranscoderV1::H264ColorFormatHlg, decorator: Google::Apis::TranscoderV1::H264ColorFormatHlg::Representation
636
+
592
637
  property :pixel_format, as: 'pixelFormat'
593
638
  property :preset, as: 'preset'
594
639
  property :profile, as: 'profile'
595
640
  property :rate_control_mode, as: 'rateControlMode'
641
+ property :sdr, as: 'sdr', class: Google::Apis::TranscoderV1::H264ColorFormatSdr, decorator: Google::Apis::TranscoderV1::H264ColorFormatSdr::Representation
642
+
596
643
  property :tune, as: 'tune'
597
644
  property :vbv_fullness_bits, as: 'vbvFullnessBits'
598
645
  property :vbv_size_bits, as: 'vbvSizeBits'
@@ -600,6 +647,18 @@ module Google
600
647
  end
601
648
  end
602
649
 
650
+ class H264ColorFormatHlg
651
+ # @private
652
+ class Representation < Google::Apis::Core::JsonRepresentation
653
+ end
654
+ end
655
+
656
+ class H264ColorFormatSdr
657
+ # @private
658
+ class Representation < Google::Apis::Core::JsonRepresentation
659
+ end
660
+ end
661
+
603
662
  class H265CodecSettings
604
663
  # @private
605
664
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -611,13 +670,20 @@ module Google
611
670
  property :crf_level, as: 'crfLevel'
612
671
  property :enable_two_pass, as: 'enableTwoPass'
613
672
  property :frame_rate, as: 'frameRate'
673
+ property :frame_rate_conversion_strategy, as: 'frameRateConversionStrategy'
614
674
  property :gop_duration, as: 'gopDuration'
615
675
  property :gop_frame_count, as: 'gopFrameCount'
676
+ property :hdr10, as: 'hdr10', class: Google::Apis::TranscoderV1::H265ColorFormatHdr10, decorator: Google::Apis::TranscoderV1::H265ColorFormatHdr10::Representation
677
+
616
678
  property :height_pixels, as: 'heightPixels'
679
+ property :hlg, as: 'hlg', class: Google::Apis::TranscoderV1::H265ColorFormatHlg, decorator: Google::Apis::TranscoderV1::H265ColorFormatHlg::Representation
680
+
617
681
  property :pixel_format, as: 'pixelFormat'
618
682
  property :preset, as: 'preset'
619
683
  property :profile, as: 'profile'
620
684
  property :rate_control_mode, as: 'rateControlMode'
685
+ property :sdr, as: 'sdr', class: Google::Apis::TranscoderV1::H265ColorFormatSdr, decorator: Google::Apis::TranscoderV1::H265ColorFormatSdr::Representation
686
+
621
687
  property :tune, as: 'tune'
622
688
  property :vbv_fullness_bits, as: 'vbvFullnessBits'
623
689
  property :vbv_size_bits, as: 'vbvSizeBits'
@@ -625,6 +691,24 @@ module Google
625
691
  end
626
692
  end
627
693
 
694
+ class H265ColorFormatHdr10
695
+ # @private
696
+ class Representation < Google::Apis::Core::JsonRepresentation
697
+ end
698
+ end
699
+
700
+ class H265ColorFormatHlg
701
+ # @private
702
+ class Representation < Google::Apis::Core::JsonRepresentation
703
+ end
704
+ end
705
+
706
+ class H265ColorFormatSdr
707
+ # @private
708
+ class Representation < Google::Apis::Core::JsonRepresentation
709
+ end
710
+ end
711
+
628
712
  class Image
629
713
  # @private
630
714
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -912,16 +996,33 @@ module Google
912
996
  property :bitrate_bps, as: 'bitrateBps'
913
997
  property :crf_level, as: 'crfLevel'
914
998
  property :frame_rate, as: 'frameRate'
999
+ property :frame_rate_conversion_strategy, as: 'frameRateConversionStrategy'
915
1000
  property :gop_duration, as: 'gopDuration'
916
1001
  property :gop_frame_count, as: 'gopFrameCount'
917
1002
  property :height_pixels, as: 'heightPixels'
1003
+ property :hlg, as: 'hlg', class: Google::Apis::TranscoderV1::Vp9ColorFormatHlg, decorator: Google::Apis::TranscoderV1::Vp9ColorFormatHlg::Representation
1004
+
918
1005
  property :pixel_format, as: 'pixelFormat'
919
1006
  property :profile, as: 'profile'
920
1007
  property :rate_control_mode, as: 'rateControlMode'
1008
+ property :sdr, as: 'sdr', class: Google::Apis::TranscoderV1::Vp9ColorFormatSdr, decorator: Google::Apis::TranscoderV1::Vp9ColorFormatSdr::Representation
1009
+
921
1010
  property :width_pixels, as: 'widthPixels'
922
1011
  end
923
1012
  end
924
1013
 
1014
+ class Vp9ColorFormatHlg
1015
+ # @private
1016
+ class Representation < Google::Apis::Core::JsonRepresentation
1017
+ end
1018
+ end
1019
+
1020
+ class Vp9ColorFormatSdr
1021
+ # @private
1022
+ class Representation < Google::Apis::Core::JsonRepresentation
1023
+ end
1024
+ end
1025
+
925
1026
  class Widevine
926
1027
  # @private
927
1028
  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.24.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-18 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.24.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: []