tencentcloud-sdk-mps 3.0.886 → 3.0.887

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190612/models.rb +38 -11
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 98cb940cdc89bff32fdf9d2ea8b4c01793a33ef4
4
- data.tar.gz: 71e4a2cc6fe10a4e3b4fc5fbb863d31ef7c91f4e
3
+ metadata.gz: 33e8833323c8b3ed67c12d02d46d1b2bb1f306ba
4
+ data.tar.gz: 8d8f5c35ff753c26b134c2edfa43d2986179d053
5
5
  SHA512:
6
- metadata.gz: 444431680e0101b04effcdabaf1d17241febc6f8d9fafec0c3ff7da2990b8411bbe15cf287dcf12739d2e3b1bc01b3834799cdedb87c6270032cbade451b4b5c
7
- data.tar.gz: ef0244936bd7c7b0f154adabbc06554ef2d26cacfb95487cf5abcc16463a8904e1947f50a394fdbcd42398586f72bd851546427862b401e4ddfbb21ea798b1ae
6
+ metadata.gz: 4045b3c509e9dc2ea63cea267d22d1d507fbb307afa4fc113324c51f4aebd53f3f82ae09a7da54d38591e089a99c998bd20ab5f61c7039c97e21ea5e45d87f46
7
+ data.tar.gz: a828d6f4dc1210be89a0f5ecdb2cee8618f0c7dfedbbb884fdd74240fa22fc7b374f84fa700c3aa3564945a76f62a799b14fb7341664e3a3df07aaac9bc810c2
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.886
1
+ 3.0.887
@@ -15169,10 +15169,16 @@ module TencentCloud
15169
15169
  # @param Codecs: 视频Codecs。
15170
15170
  # 注意:此字段可能返回 null,表示取不到有效值。
15171
15171
  # @type Codecs: String
15172
+ # @param FpsNumerator: 帧率分子部分
15173
+ # 注意:此字段可能返回 null,表示取不到有效值。
15174
+ # @type FpsNumerator: Integer
15175
+ # @param FpsDenominator: 帧率分母部分
15176
+ # 注意:此字段可能返回 null,表示取不到有效值。
15177
+ # @type FpsDenominator: Integer
15172
15178
 
15173
- attr_accessor :Bitrate, :Height, :Width, :Codec, :Fps, :ColorPrimaries, :ColorSpace, :ColorTransfer, :HdrType, :Codecs
15179
+ attr_accessor :Bitrate, :Height, :Width, :Codec, :Fps, :ColorPrimaries, :ColorSpace, :ColorTransfer, :HdrType, :Codecs, :FpsNumerator, :FpsDenominator
15174
15180
 
15175
- def initialize(bitrate=nil, height=nil, width=nil, codec=nil, fps=nil, colorprimaries=nil, colorspace=nil, colortransfer=nil, hdrtype=nil, codecs=nil)
15181
+ def initialize(bitrate=nil, height=nil, width=nil, codec=nil, fps=nil, colorprimaries=nil, colorspace=nil, colortransfer=nil, hdrtype=nil, codecs=nil, fpsnumerator=nil, fpsdenominator=nil)
15176
15182
  @Bitrate = bitrate
15177
15183
  @Height = height
15178
15184
  @Width = width
@@ -15183,6 +15189,8 @@ module TencentCloud
15183
15189
  @ColorTransfer = colortransfer
15184
15190
  @HdrType = hdrtype
15185
15191
  @Codecs = codecs
15192
+ @FpsNumerator = fpsnumerator
15193
+ @FpsDenominator = fpsdenominator
15186
15194
  end
15187
15195
 
15188
15196
  def deserialize(params)
@@ -15196,6 +15204,8 @@ module TencentCloud
15196
15204
  @ColorTransfer = params['ColorTransfer']
15197
15205
  @HdrType = params['HdrType']
15198
15206
  @Codecs = params['Codecs']
15207
+ @FpsNumerator = params['FpsNumerator']
15208
+ @FpsDenominator = params['FpsDenominator']
15199
15209
  end
15200
15210
  end
15201
15211
 
@@ -20847,10 +20857,12 @@ module TencentCloud
20847
20857
  # 注意:VP8、VP9编码容器目前只支持webm,mkv。
20848
20858
  # 注意:MPEG2、dnxhd 编码容器目前只支持mxf。
20849
20859
  # @type Codec: String
20850
- # @param Fps: 视频帧率,取值范围:[0, 120],单位:Hz。 当取值为 0,表示帧率和原始视频保持一致。
20851
- # 注意:自适应码率时取值范围是 [0, 60]
20860
+ # @param Fps: 视频帧率,取值范围:
20861
+ # 当FpsDenominator的值为空时,范围:[0, 120],单位:Hz;
20862
+ # 当FpsDenominator的值不为空时,Fps/FpsDenominator的范围:[0,120]
20863
+ # 当取值为 0,表示帧率和原始视频保持一致。
20852
20864
  # @type Fps: Integer
20853
- # @param Bitrate: 视频流的码率,取值范围:0 和 [128, 35000],单位:kbps。
20865
+ # @param Bitrate: 视频流的码率,取值范围:0 和 [128, 100000],单位:kbps。
20854
20866
  # 当取值为 0,表示视频码率和原始视频保持一致。
20855
20867
  # @type Bitrate: Integer
20856
20868
  # @param ResolutionAdaptive: 分辨率自适应,可选值:
@@ -20896,10 +20908,14 @@ module TencentCloud
20896
20908
  # 默认值:0
20897
20909
  # 注意:此字段可能返回 null,表示取不到有效值。
20898
20910
  # @type SegmentType: Integer
20911
+ # @param FpsDenominator: 帧率分母部分
20912
+ # 注意:值必须大于0
20913
+ # 注意:此字段可能返回 null,表示取不到有效值。
20914
+ # @type FpsDenominator: Integer
20899
20915
 
20900
- attr_accessor :Codec, :Fps, :Bitrate, :ResolutionAdaptive, :Width, :Height, :Gop, :FillType, :Vcrf, :SegmentType
20916
+ attr_accessor :Codec, :Fps, :Bitrate, :ResolutionAdaptive, :Width, :Height, :Gop, :FillType, :Vcrf, :SegmentType, :FpsDenominator
20901
20917
 
20902
- def initialize(codec=nil, fps=nil, bitrate=nil, resolutionadaptive=nil, width=nil, height=nil, gop=nil, filltype=nil, vcrf=nil, segmenttype=nil)
20918
+ def initialize(codec=nil, fps=nil, bitrate=nil, resolutionadaptive=nil, width=nil, height=nil, gop=nil, filltype=nil, vcrf=nil, segmenttype=nil, fpsdenominator=nil)
20903
20919
  @Codec = codec
20904
20920
  @Fps = fps
20905
20921
  @Bitrate = bitrate
@@ -20910,6 +20926,7 @@ module TencentCloud
20910
20926
  @FillType = filltype
20911
20927
  @Vcrf = vcrf
20912
20928
  @SegmentType = segmenttype
20929
+ @FpsDenominator = fpsdenominator
20913
20930
  end
20914
20931
 
20915
20932
  def deserialize(params)
@@ -20923,6 +20940,7 @@ module TencentCloud
20923
20940
  @FillType = params['FillType']
20924
20941
  @Vcrf = params['Vcrf']
20925
20942
  @SegmentType = params['SegmentType']
20943
+ @FpsDenominator = params['FpsDenominator']
20926
20944
  end
20927
20945
  end
20928
20946
 
@@ -20945,10 +20963,13 @@ module TencentCloud
20945
20963
  # 注意:MPEG2、dnxhd 编码容器目前只支持mxf。
20946
20964
  # 注意:此字段可能返回 null,表示取不到有效值。
20947
20965
  # @type Codec: String
20948
- # @param Fps: 视频帧率,取值范围:[0, 120],单位:Hz。 当取值为 0,表示帧率和原始视频保持一致。
20966
+ # @param Fps: 视频帧率,取值范围:
20967
+ # 当FpsDenominator的值为空时,范围:[0, 120],单位:Hz;
20968
+ # 当FpsDenominator的值不为空时,Fps/FpsDenominator的范围:[0,120]
20969
+ # 当取值为 0,表示帧率和原始视频保持一致。
20949
20970
  # 注意:此字段可能返回 null,表示取不到有效值。
20950
20971
  # @type Fps: Integer
20951
- # @param Bitrate: 视频流的码率,取值范围:0 和 [128, 35000],单位:kbps。
20972
+ # @param Bitrate: 视频流的码率,取值范围:0 和 [128, 100000],单位:kbps。
20952
20973
  # 当取值为 0,表示视频码率和原始视频保持一致。
20953
20974
  # 注意:此字段可能返回 null,表示取不到有效值。
20954
20975
  # @type Bitrate: Integer
@@ -20996,10 +21017,14 @@ module TencentCloud
20996
21017
  # 默认值:0
20997
21018
  # 注意:此字段可能返回 null,表示取不到有效值。
20998
21019
  # @type SegmentType: Integer
21020
+ # @param FpsDenominator: 帧率分母部分
21021
+ # 注意:值必须大于0
21022
+ # 注意:此字段可能返回 null,表示取不到有效值。
21023
+ # @type FpsDenominator: Integer
20999
21024
 
21000
- attr_accessor :Codec, :Fps, :Bitrate, :ResolutionAdaptive, :Width, :Height, :Gop, :FillType, :Vcrf, :ContentAdaptStream, :SegmentType
21025
+ attr_accessor :Codec, :Fps, :Bitrate, :ResolutionAdaptive, :Width, :Height, :Gop, :FillType, :Vcrf, :ContentAdaptStream, :SegmentType, :FpsDenominator
21001
21026
 
21002
- def initialize(codec=nil, fps=nil, bitrate=nil, resolutionadaptive=nil, width=nil, height=nil, gop=nil, filltype=nil, vcrf=nil, contentadaptstream=nil, segmenttype=nil)
21027
+ def initialize(codec=nil, fps=nil, bitrate=nil, resolutionadaptive=nil, width=nil, height=nil, gop=nil, filltype=nil, vcrf=nil, contentadaptstream=nil, segmenttype=nil, fpsdenominator=nil)
21003
21028
  @Codec = codec
21004
21029
  @Fps = fps
21005
21030
  @Bitrate = bitrate
@@ -21011,6 +21036,7 @@ module TencentCloud
21011
21036
  @Vcrf = vcrf
21012
21037
  @ContentAdaptStream = contentadaptstream
21013
21038
  @SegmentType = segmenttype
21039
+ @FpsDenominator = fpsdenominator
21014
21040
  end
21015
21041
 
21016
21042
  def deserialize(params)
@@ -21025,6 +21051,7 @@ module TencentCloud
21025
21051
  @Vcrf = params['Vcrf']
21026
21052
  @ContentAdaptStream = params['ContentAdaptStream']
21027
21053
  @SegmentType = params['SegmentType']
21054
+ @FpsDenominator = params['FpsDenominator']
21028
21055
  end
21029
21056
  end
21030
21057
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-mps
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.886
4
+ version: 3.0.887
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-14 00:00:00.000000000 Z
11
+ date: 2024-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common