tencentcloud-sdk-vod 3.0.489 → 3.0.490
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180717/models.rb +36 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e09f227fe931afad7620be1b2bd15cc4ced82f54
|
|
4
|
+
data.tar.gz: 47ce2afa4dc11c2ae4e9a8fbd937c0e17a78d0c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9f6c5674e04984555a6099d428c8863467f3b7704c535b8a0977327da85fc3cb408b6aeb993c118509a1b9efb38d2c93be3c12396655ea8c1e80c8c8d9ae0f1d
|
|
7
|
+
data.tar.gz: b8fcd4b924400cdf1e8ed0fb3e1ecde6afca824d50f8987d4ac4aa10b61a83e67b7b94cefc25d894fbfca10e0d9790286065bfa644e544e4990b1b5afc6b3df5
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.490
|
data/lib/v20180717/models.rb
CHANGED
|
@@ -10560,6 +10560,30 @@ module TencentCloud
|
|
|
10560
10560
|
end
|
|
10561
10561
|
end
|
|
10562
10562
|
|
|
10563
|
+
# 画面动态范围信息。
|
|
10564
|
+
class DynamicRangeInfo < TencentCloud::Common::AbstractModel
|
|
10565
|
+
# @param Type: 画面动态范围信息。可取值:
|
|
10566
|
+
# <li>SDR:Standard Dynamic Range 标准动态范围;</li>
|
|
10567
|
+
# <li>HDR:High Dynamic Range 高动态范围。</li>
|
|
10568
|
+
# @type Type: String
|
|
10569
|
+
# @param HDRType: 高动态范围类型,当 Type 为 HDR 时有效。目前支持的可取值:
|
|
10570
|
+
# <li>hdr10:表示 hdr10 标准;</li>
|
|
10571
|
+
# <li>hlg:表示 hlg 标准。</li>
|
|
10572
|
+
# @type HDRType: String
|
|
10573
|
+
|
|
10574
|
+
attr_accessor :Type, :HDRType
|
|
10575
|
+
|
|
10576
|
+
def initialize(type=nil, hdrtype=nil)
|
|
10577
|
+
@Type = type
|
|
10578
|
+
@HDRType = hdrtype
|
|
10579
|
+
end
|
|
10580
|
+
|
|
10581
|
+
def deserialize(params)
|
|
10582
|
+
@Type = params['Type']
|
|
10583
|
+
@HDRType = params['HDRType']
|
|
10584
|
+
end
|
|
10585
|
+
end
|
|
10586
|
+
|
|
10563
10587
|
# 编辑点播视频文件信息
|
|
10564
10588
|
class EditMediaFileInfo < TencentCloud::Common::AbstractModel
|
|
10565
10589
|
# @param FileId: 视频的 ID。
|
|
@@ -14585,16 +14609,20 @@ module TencentCloud
|
|
|
14585
14609
|
# @type Fps: Integer
|
|
14586
14610
|
# @param CodecTag: 编码标签,仅当 Codec 为 hevc 时有效。
|
|
14587
14611
|
# @type CodecTag: String
|
|
14612
|
+
# @param DynamicRangeInfo: 画面动态范围信息。
|
|
14613
|
+
# <li><font color=red>注意</font>:在 2023-01-10T00:00:00Z 后处理的转码文件,此字段有效。</li>
|
|
14614
|
+
# @type DynamicRangeInfo: :class:`Tencentcloud::Vod.v20180717.models.DynamicRangeInfo`
|
|
14588
14615
|
|
|
14589
|
-
attr_accessor :Bitrate, :Height, :Width, :Codec, :Fps, :CodecTag
|
|
14616
|
+
attr_accessor :Bitrate, :Height, :Width, :Codec, :Fps, :CodecTag, :DynamicRangeInfo
|
|
14590
14617
|
|
|
14591
|
-
def initialize(bitrate=nil, height=nil, width=nil, codec=nil, fps=nil, codectag=nil)
|
|
14618
|
+
def initialize(bitrate=nil, height=nil, width=nil, codec=nil, fps=nil, codectag=nil, dynamicrangeinfo=nil)
|
|
14592
14619
|
@Bitrate = bitrate
|
|
14593
14620
|
@Height = height
|
|
14594
14621
|
@Width = width
|
|
14595
14622
|
@Codec = codec
|
|
14596
14623
|
@Fps = fps
|
|
14597
14624
|
@CodecTag = codectag
|
|
14625
|
+
@DynamicRangeInfo = dynamicrangeinfo
|
|
14598
14626
|
end
|
|
14599
14627
|
|
|
14600
14628
|
def deserialize(params)
|
|
@@ -14604,6 +14632,10 @@ module TencentCloud
|
|
|
14604
14632
|
@Codec = params['Codec']
|
|
14605
14633
|
@Fps = params['Fps']
|
|
14606
14634
|
@CodecTag = params['CodecTag']
|
|
14635
|
+
unless params['DynamicRangeInfo'].nil?
|
|
14636
|
+
@DynamicRangeInfo = DynamicRangeInfo.new
|
|
14637
|
+
@DynamicRangeInfo.deserialize(params['DynamicRangeInfo'])
|
|
14638
|
+
end
|
|
14607
14639
|
end
|
|
14608
14640
|
end
|
|
14609
14641
|
|
|
@@ -17325,7 +17357,8 @@ module TencentCloud
|
|
|
17325
17357
|
# @param Definition: 审核模板。
|
|
17326
17358
|
# @type Definition: Integer
|
|
17327
17359
|
# @param ReviewContents: 审核的内容,可选值:
|
|
17328
|
-
# <li>Media
|
|
17360
|
+
# <li>Media:原始音视频;</li>
|
|
17361
|
+
# <li>Cover:封面。</li>
|
|
17329
17362
|
# 不填或填空数组时,默认为审核 Media。
|
|
17330
17363
|
# @type ReviewContents: Array
|
|
17331
17364
|
|
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.
|
|
4
|
+
version: 3.0.490
|
|
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-01-
|
|
11
|
+
date: 2023-01-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|