google-apis-transcoder_v1 0.23.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60e640aea2c35765daa0f2bb9760b5f9ed2d40f09ea9c81d0944b90dec9f85a5
|
4
|
+
data.tar.gz: 0cb2667598684fbbd8b985e0390ada6c3775c689f005c40699c8fff113438c02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ba7644e4b381feb1bca190cedf01849f4730265802aa447abf15e8b695d6173c5f2cee4d426f90fdf238789f2e1d17eeb94c9780e671e002df92e3a3f72fab3
|
7
|
+
data.tar.gz: ca8ff42eb3b9d663ebb27ff4e7fbe97d320cc33a079b9779a0e46a2e1724bf0cfacdc04802a42e241b209ea9af7a345df47a3f39e67a3f76cae544690f423a9f
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
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
|
@@ -958,6 +960,7 @@ module Google
|
|
958
960
|
@enable_two_pass = args[:enable_two_pass] if args.key?(:enable_two_pass)
|
959
961
|
@entropy_coder = args[:entropy_coder] if args.key?(:entropy_coder)
|
960
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)
|
961
964
|
@gop_duration = args[:gop_duration] if args.key?(:gop_duration)
|
962
965
|
@gop_frame_count = args[:gop_frame_count] if args.key?(:gop_frame_count)
|
963
966
|
@height_pixels = args[:height_pixels] if args.key?(:height_pixels)
|
@@ -1051,15 +1054,17 @@ module Google
|
|
1051
1054
|
alias_method :enable_two_pass?, :enable_two_pass
|
1052
1055
|
|
1053
1056
|
# Required. The target video frame rate in frames per second (FPS). Must be less
|
1054
|
-
# than or equal to 120.
|
1055
|
-
# input frame rate. The API will generate an output FPS that is divisible by the
|
1056
|
-
# input FPS, and smaller or equal to the target FPS. See [Calculating frame rate]
|
1057
|
-
# (https://cloud.google.com/transcoder/docs/concepts/frame-rate) for more
|
1058
|
-
# information.
|
1057
|
+
# than or equal to 120.
|
1059
1058
|
# Corresponds to the JSON property `frameRate`
|
1060
1059
|
# @return [Float]
|
1061
1060
|
attr_accessor :frame_rate
|
1062
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
|
+
|
1063
1068
|
# Select the GOP size based on the specified duration. The default is `3s`. Note
|
1064
1069
|
# that `gopDuration` must be less than or equal to [`segmentDuration`](#
|
1065
1070
|
# SegmentSettings), and [`segmentDuration`](#SegmentSettings) must be divisible
|
@@ -1181,6 +1186,7 @@ module Google
|
|
1181
1186
|
@crf_level = args[:crf_level] if args.key?(:crf_level)
|
1182
1187
|
@enable_two_pass = args[:enable_two_pass] if args.key?(:enable_two_pass)
|
1183
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)
|
1184
1190
|
@gop_duration = args[:gop_duration] if args.key?(:gop_duration)
|
1185
1191
|
@gop_frame_count = args[:gop_frame_count] if args.key?(:gop_frame_count)
|
1186
1192
|
@hdr10 = args[:hdr10] if args.key?(:hdr10)
|
@@ -2264,15 +2270,17 @@ module Google
|
|
2264
2270
|
attr_accessor :crf_level
|
2265
2271
|
|
2266
2272
|
# Required. The target video frame rate in frames per second (FPS). Must be less
|
2267
|
-
# than or equal to 120.
|
2268
|
-
# input frame rate. The API will generate an output FPS that is divisible by the
|
2269
|
-
# input FPS, and smaller or equal to the target FPS. See [Calculating frame rate]
|
2270
|
-
# (https://cloud.google.com/transcoder/docs/concepts/frame-rate) for more
|
2271
|
-
# information.
|
2273
|
+
# than or equal to 120.
|
2272
2274
|
# Corresponds to the JSON property `frameRate`
|
2273
2275
|
# @return [Float]
|
2274
2276
|
attr_accessor :frame_rate
|
2275
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
|
+
|
2276
2284
|
# Select the GOP size based on the specified duration. The default is `3s`. Note
|
2277
2285
|
# that `gopDuration` must be less than or equal to [`segmentDuration`](#
|
2278
2286
|
# SegmentSettings), and [`segmentDuration`](#SegmentSettings) must be divisible
|
@@ -2352,6 +2360,7 @@ module Google
|
|
2352
2360
|
@bitrate_bps = args[:bitrate_bps] if args.key?(:bitrate_bps)
|
2353
2361
|
@crf_level = args[:crf_level] if args.key?(:crf_level)
|
2354
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)
|
2355
2364
|
@gop_duration = args[:gop_duration] if args.key?(:gop_duration)
|
2356
2365
|
@gop_frame_count = args[:gop_frame_count] if args.key?(:gop_frame_count)
|
2357
2366
|
@height_pixels = args[:height_pixels] if args.key?(:height_pixels)
|
@@ -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.24.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.13.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240207"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -628,6 +628,7 @@ module Google
|
|
628
628
|
property :enable_two_pass, as: 'enableTwoPass'
|
629
629
|
property :entropy_coder, as: 'entropyCoder'
|
630
630
|
property :frame_rate, as: 'frameRate'
|
631
|
+
property :frame_rate_conversion_strategy, as: 'frameRateConversionStrategy'
|
631
632
|
property :gop_duration, as: 'gopDuration'
|
632
633
|
property :gop_frame_count, as: 'gopFrameCount'
|
633
634
|
property :height_pixels, as: 'heightPixels'
|
@@ -669,6 +670,7 @@ module Google
|
|
669
670
|
property :crf_level, as: 'crfLevel'
|
670
671
|
property :enable_two_pass, as: 'enableTwoPass'
|
671
672
|
property :frame_rate, as: 'frameRate'
|
673
|
+
property :frame_rate_conversion_strategy, as: 'frameRateConversionStrategy'
|
672
674
|
property :gop_duration, as: 'gopDuration'
|
673
675
|
property :gop_frame_count, as: 'gopFrameCount'
|
674
676
|
property :hdr10, as: 'hdr10', class: Google::Apis::TranscoderV1::H265ColorFormatHdr10, decorator: Google::Apis::TranscoderV1::H265ColorFormatHdr10::Representation
|
@@ -994,6 +996,7 @@ module Google
|
|
994
996
|
property :bitrate_bps, as: 'bitrateBps'
|
995
997
|
property :crf_level, as: 'crfLevel'
|
996
998
|
property :frame_rate, as: 'frameRate'
|
999
|
+
property :frame_rate_conversion_strategy, as: 'frameRateConversionStrategy'
|
997
1000
|
property :gop_duration, as: 'gopDuration'
|
998
1001
|
property :gop_frame_count, as: 'gopFrameCount'
|
999
1002
|
property :height_pixels, as: 'heightPixels'
|
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.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-02-
|
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.
|
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: []
|