tencentcloud-sdk-vod 3.0.575 → 3.0.576

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
  SHA1:
3
- metadata.gz: fa04bb3a6e25af0882823fd45a0e418dd4be76aa
4
- data.tar.gz: eac9b9d26e8e95256f8b50c0818b46a40d3c495c
3
+ metadata.gz: 68b81a3655ba5f7d8df522a6a5705011ff48f8d9
4
+ data.tar.gz: d96ba87b0ad035ba2c8b53481fb5038af09f5efa
5
5
  SHA512:
6
- metadata.gz: c87b7fb893b54c0fe1ad59511c054cd52f5cc6bf59a15c716fe31b2f6b15ff186d31cc3981cf9fdd20ce00b35fb7873ffc827d17cf0bc3179bacfa531be75bb0
7
- data.tar.gz: 9a4df263d589ecacb6f2f455da24e480501fd943119387fd645a1ff8f11e3e611632cd3c27e0f20292da7c93d7efa385fd53ebb6641ea9761149cbc4a27b0e7c
6
+ metadata.gz: 6666bdfb19c9ed697785fb28f7d46f1de46de13e66fbdbfea76e5a1195dae6d23dc87f0ac06f96bf0d1a17d8ffd256175aea9e05869bd72e80559666e0d63188
7
+ data.tar.gz: 30e44d3bc227d3180c5fb3916448c5acc591d9726e5b8792753e3bb88ad4b3158c1b6a13fde6ddcb9f9607a245fe660451607af829f66c37fa3ac1b3e0a9679b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.575
1
+ 3.0.576
@@ -11575,19 +11575,25 @@ module TencentCloud
11575
11575
  # <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
11576
11576
  # 默认值:0。
11577
11577
  # @type Height: Integer
11578
+ # @param Fps: 视频帧率,取值范围:[0, 100],单位:Hz。
11579
+ # 当取值为0,将自动为视频设置帧率。
11580
+ # 默认值为 0。
11581
+ # @type Fps: Integer
11578
11582
 
11579
- attr_accessor :ResolutionAdaptive, :Width, :Height
11583
+ attr_accessor :ResolutionAdaptive, :Width, :Height, :Fps
11580
11584
 
11581
- def initialize(resolutionadaptive=nil, width=nil, height=nil)
11585
+ def initialize(resolutionadaptive=nil, width=nil, height=nil, fps=nil)
11582
11586
  @ResolutionAdaptive = resolutionadaptive
11583
11587
  @Width = width
11584
11588
  @Height = height
11589
+ @Fps = fps
11585
11590
  end
11586
11591
 
11587
11592
  def deserialize(params)
11588
11593
  @ResolutionAdaptive = params['ResolutionAdaptive']
11589
11594
  @Width = params['Width']
11590
11595
  @Height = params['Height']
11596
+ @Fps = params['Fps']
11591
11597
  end
11592
11598
  end
11593
11599
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-vod
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.575
4
+ version: 3.0.576
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-23 00:00:00.000000000 Z
11
+ date: 2023-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common