tencentcloud-sdk-mps 3.0.904 → 3.0.905
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190612/models.rb +92 -29
- 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: 2116a0d13cff5bf2fcf600efa9fb5545f04a450f
|
4
|
+
data.tar.gz: 8b726f3350c3c2cc9b4900d05318eb8b9d1f79d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7b91e8855cef92e46953eb00441198220bd07c263aaad6348654d860841794ae8632873e7a15e120110c02850e5ec98581c502ffe05bb13c094414f7667cc65
|
7
|
+
data.tar.gz: 24ed9012ab610ad50fa9fec749bdefddd046bf740242080261d6903da6810937a94b4633836d456865052ac879e2ec702c991cd895269948479a81fcfe6ff822
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.905
|
data/lib/v20190612/models.rb
CHANGED
@@ -8400,14 +8400,17 @@ module TencentCloud
|
|
8400
8400
|
# * Preset:系统预置模板;
|
8401
8401
|
# * Custom:用户自定义模板。
|
8402
8402
|
# @type Type: String
|
8403
|
+
# @param Name: 视频内容分析模板标识过滤条件,长度限制:64 个字符。
|
8404
|
+
# @type Name: String
|
8403
8405
|
|
8404
|
-
attr_accessor :Definitions, :Offset, :Limit, :Type
|
8406
|
+
attr_accessor :Definitions, :Offset, :Limit, :Type, :Name
|
8405
8407
|
|
8406
|
-
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
|
8408
|
+
def initialize(definitions=nil, offset=nil, limit=nil, type=nil, name=nil)
|
8407
8409
|
@Definitions = definitions
|
8408
8410
|
@Offset = offset
|
8409
8411
|
@Limit = limit
|
8410
8412
|
@Type = type
|
8413
|
+
@Name = name
|
8411
8414
|
end
|
8412
8415
|
|
8413
8416
|
def deserialize(params)
|
@@ -8415,6 +8418,7 @@ module TencentCloud
|
|
8415
8418
|
@Offset = params['Offset']
|
8416
8419
|
@Limit = params['Limit']
|
8417
8420
|
@Type = params['Type']
|
8421
|
+
@Name = params['Name']
|
8418
8422
|
end
|
8419
8423
|
end
|
8420
8424
|
|
@@ -8461,14 +8465,17 @@ module TencentCloud
|
|
8461
8465
|
# * Preset:系统预置模板;
|
8462
8466
|
# * Custom:用户自定义模板。
|
8463
8467
|
# @type Type: String
|
8468
|
+
# @param Name: 视频内容识别模板标识过滤条件,长度限制:64 个字符。
|
8469
|
+
# @type Name: String
|
8464
8470
|
|
8465
|
-
attr_accessor :Definitions, :Offset, :Limit, :Type
|
8471
|
+
attr_accessor :Definitions, :Offset, :Limit, :Type, :Name
|
8466
8472
|
|
8467
|
-
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
|
8473
|
+
def initialize(definitions=nil, offset=nil, limit=nil, type=nil, name=nil)
|
8468
8474
|
@Definitions = definitions
|
8469
8475
|
@Offset = offset
|
8470
8476
|
@Limit = limit
|
8471
8477
|
@Type = type
|
8478
|
+
@Name = name
|
8472
8479
|
end
|
8473
8480
|
|
8474
8481
|
def deserialize(params)
|
@@ -8476,6 +8483,7 @@ module TencentCloud
|
|
8476
8483
|
@Offset = params['Offset']
|
8477
8484
|
@Limit = params['Limit']
|
8478
8485
|
@Type = params['Type']
|
8486
|
+
@Name = params['Name']
|
8479
8487
|
end
|
8480
8488
|
end
|
8481
8489
|
|
@@ -8524,15 +8532,18 @@ module TencentCloud
|
|
8524
8532
|
# @type Type: String
|
8525
8533
|
# @param PureAudio: 是否为纯音频,0表示视频,1表示纯音频
|
8526
8534
|
# @type PureAudio: Integer
|
8535
|
+
# @param Name: 自适应转码模板标识过滤条件,长度限制:64 个字符
|
8536
|
+
# @type Name: String
|
8527
8537
|
|
8528
|
-
attr_accessor :Definitions, :Offset, :Limit, :Type, :PureAudio
|
8538
|
+
attr_accessor :Definitions, :Offset, :Limit, :Type, :PureAudio, :Name
|
8529
8539
|
|
8530
|
-
def initialize(definitions=nil, offset=nil, limit=nil, type=nil, pureaudio=nil)
|
8540
|
+
def initialize(definitions=nil, offset=nil, limit=nil, type=nil, pureaudio=nil, name=nil)
|
8531
8541
|
@Definitions = definitions
|
8532
8542
|
@Offset = offset
|
8533
8543
|
@Limit = limit
|
8534
8544
|
@Type = type
|
8535
8545
|
@PureAudio = pureaudio
|
8546
|
+
@Name = name
|
8536
8547
|
end
|
8537
8548
|
|
8538
8549
|
def deserialize(params)
|
@@ -8541,6 +8552,7 @@ module TencentCloud
|
|
8541
8552
|
@Limit = params['Limit']
|
8542
8553
|
@Type = params['Type']
|
8543
8554
|
@PureAudio = params['PureAudio']
|
8555
|
+
@Name = params['Name']
|
8544
8556
|
end
|
8545
8557
|
end
|
8546
8558
|
|
@@ -8587,14 +8599,17 @@ module TencentCloud
|
|
8587
8599
|
# <li>Preset:系统预置模板;</li>
|
8588
8600
|
# <li>Custom:用户自定义模板。</li>
|
8589
8601
|
# @type Type: String
|
8602
|
+
# @param Name: 转动图模板标识过滤条件,长度限制:64 个字符。
|
8603
|
+
# @type Name: String
|
8590
8604
|
|
8591
|
-
attr_accessor :Definitions, :Offset, :Limit, :Type
|
8605
|
+
attr_accessor :Definitions, :Offset, :Limit, :Type, :Name
|
8592
8606
|
|
8593
|
-
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
|
8607
|
+
def initialize(definitions=nil, offset=nil, limit=nil, type=nil, name=nil)
|
8594
8608
|
@Definitions = definitions
|
8595
8609
|
@Offset = offset
|
8596
8610
|
@Limit = limit
|
8597
8611
|
@Type = type
|
8612
|
+
@Name = name
|
8598
8613
|
end
|
8599
8614
|
|
8600
8615
|
def deserialize(params)
|
@@ -8602,6 +8617,7 @@ module TencentCloud
|
|
8602
8617
|
@Offset = params['Offset']
|
8603
8618
|
@Limit = params['Limit']
|
8604
8619
|
@Type = params['Type']
|
8620
|
+
@Name = params['Name']
|
8605
8621
|
end
|
8606
8622
|
end
|
8607
8623
|
|
@@ -8648,14 +8664,17 @@ module TencentCloud
|
|
8648
8664
|
# * Preset:系统预置模板;
|
8649
8665
|
# * Custom:用户自定义模板。
|
8650
8666
|
# @type Type: String
|
8667
|
+
# @param Name: 智能审核模板标识过滤条件,长度限制:64 个字符。
|
8668
|
+
# @type Name: String
|
8651
8669
|
|
8652
|
-
attr_accessor :Definitions, :Offset, :Limit, :Type
|
8670
|
+
attr_accessor :Definitions, :Offset, :Limit, :Type, :Name
|
8653
8671
|
|
8654
|
-
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
|
8672
|
+
def initialize(definitions=nil, offset=nil, limit=nil, type=nil, name=nil)
|
8655
8673
|
@Definitions = definitions
|
8656
8674
|
@Offset = offset
|
8657
8675
|
@Limit = limit
|
8658
8676
|
@Type = type
|
8677
|
+
@Name = name
|
8659
8678
|
end
|
8660
8679
|
|
8661
8680
|
def deserialize(params)
|
@@ -8663,6 +8682,7 @@ module TencentCloud
|
|
8663
8682
|
@Offset = params['Offset']
|
8664
8683
|
@Limit = params['Limit']
|
8665
8684
|
@Type = params['Type']
|
8685
|
+
@Name = params['Name']
|
8666
8686
|
end
|
8667
8687
|
end
|
8668
8688
|
|
@@ -8851,14 +8871,17 @@ module TencentCloud
|
|
8851
8871
|
# <li>Preset:系统预置模板;</li>
|
8852
8872
|
# <li>Custom:用户自定义模板。</li>
|
8853
8873
|
# @type Type: String
|
8874
|
+
# @param Name: 雪碧图模板标识过滤条件,长度限制:64 个字符。
|
8875
|
+
# @type Name: String
|
8854
8876
|
|
8855
|
-
attr_accessor :Definitions, :Offset, :Limit, :Type
|
8877
|
+
attr_accessor :Definitions, :Offset, :Limit, :Type, :Name
|
8856
8878
|
|
8857
|
-
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
|
8879
|
+
def initialize(definitions=nil, offset=nil, limit=nil, type=nil, name=nil)
|
8858
8880
|
@Definitions = definitions
|
8859
8881
|
@Offset = offset
|
8860
8882
|
@Limit = limit
|
8861
8883
|
@Type = type
|
8884
|
+
@Name = name
|
8862
8885
|
end
|
8863
8886
|
|
8864
8887
|
def deserialize(params)
|
@@ -8866,6 +8889,7 @@ module TencentCloud
|
|
8866
8889
|
@Offset = params['Offset']
|
8867
8890
|
@Limit = params['Limit']
|
8868
8891
|
@Type = params['Type']
|
8892
|
+
@Name = params['Name']
|
8869
8893
|
end
|
8870
8894
|
end
|
8871
8895
|
|
@@ -9695,14 +9719,17 @@ module TencentCloud
|
|
9695
9719
|
# @type Limit: Integer
|
9696
9720
|
# @param Type: "Preset":预设,Custom":客户魔板
|
9697
9721
|
# @type Type: String
|
9722
|
+
# @param Name: 媒体质检模板标识过滤条件,长度限制:64 个字符。
|
9723
|
+
# @type Name: String
|
9698
9724
|
|
9699
|
-
attr_accessor :Definitions, :Offset, :Limit, :Type
|
9725
|
+
attr_accessor :Definitions, :Offset, :Limit, :Type, :Name
|
9700
9726
|
|
9701
|
-
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
|
9727
|
+
def initialize(definitions=nil, offset=nil, limit=nil, type=nil, name=nil)
|
9702
9728
|
@Definitions = definitions
|
9703
9729
|
@Offset = offset
|
9704
9730
|
@Limit = limit
|
9705
9731
|
@Type = type
|
9732
|
+
@Name = name
|
9706
9733
|
end
|
9707
9734
|
|
9708
9735
|
def deserialize(params)
|
@@ -9710,6 +9737,7 @@ module TencentCloud
|
|
9710
9737
|
@Offset = params['Offset']
|
9711
9738
|
@Limit = params['Limit']
|
9712
9739
|
@Type = params['Type']
|
9740
|
+
@Name = params['Name']
|
9713
9741
|
end
|
9714
9742
|
end
|
9715
9743
|
|
@@ -9796,14 +9824,17 @@ module TencentCloud
|
|
9796
9824
|
# <li>Preset:系统预置模板;</li>
|
9797
9825
|
# <li>Custom:用户自定义模板。</li>
|
9798
9826
|
# @type Type: String
|
9827
|
+
# @param Name: 采样截图模板标识过滤条件,长度限制:64 个字符。
|
9828
|
+
# @type Name: String
|
9799
9829
|
|
9800
|
-
attr_accessor :Definitions, :Offset, :Limit, :Type
|
9830
|
+
attr_accessor :Definitions, :Offset, :Limit, :Type, :Name
|
9801
9831
|
|
9802
|
-
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
|
9832
|
+
def initialize(definitions=nil, offset=nil, limit=nil, type=nil, name=nil)
|
9803
9833
|
@Definitions = definitions
|
9804
9834
|
@Offset = offset
|
9805
9835
|
@Limit = limit
|
9806
9836
|
@Type = type
|
9837
|
+
@Name = name
|
9807
9838
|
end
|
9808
9839
|
|
9809
9840
|
def deserialize(params)
|
@@ -9811,6 +9842,7 @@ module TencentCloud
|
|
9811
9842
|
@Offset = params['Offset']
|
9812
9843
|
@Limit = params['Limit']
|
9813
9844
|
@Type = params['Type']
|
9845
|
+
@Name = params['Name']
|
9814
9846
|
end
|
9815
9847
|
end
|
9816
9848
|
|
@@ -9926,14 +9958,17 @@ module TencentCloud
|
|
9926
9958
|
# <li>Preset:系统预置模板;</li>
|
9927
9959
|
# <li>Custom:用户自定义模板。</li>
|
9928
9960
|
# @type Type: String
|
9961
|
+
# @param Name: 指定时间点截图模板标识过滤条件,长度限制:64 个字符。
|
9962
|
+
# @type Name: String
|
9929
9963
|
|
9930
|
-
attr_accessor :Definitions, :Offset, :Limit, :Type
|
9964
|
+
attr_accessor :Definitions, :Offset, :Limit, :Type, :Name
|
9931
9965
|
|
9932
|
-
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
|
9966
|
+
def initialize(definitions=nil, offset=nil, limit=nil, type=nil, name=nil)
|
9933
9967
|
@Definitions = definitions
|
9934
9968
|
@Offset = offset
|
9935
9969
|
@Limit = limit
|
9936
9970
|
@Type = type
|
9971
|
+
@Name = name
|
9937
9972
|
end
|
9938
9973
|
|
9939
9974
|
def deserialize(params)
|
@@ -9941,6 +9976,7 @@ module TencentCloud
|
|
9941
9976
|
@Offset = params['Offset']
|
9942
9977
|
@Limit = params['Limit']
|
9943
9978
|
@Type = params['Type']
|
9979
|
+
@Name = params['Name']
|
9944
9980
|
end
|
9945
9981
|
end
|
9946
9982
|
|
@@ -10856,10 +10892,12 @@ module TencentCloud
|
|
10856
10892
|
# <li>Enhance:音视频增强模板。</li>
|
10857
10893
|
# 默认空,不限制类型。
|
10858
10894
|
# @type TranscodeType: String
|
10895
|
+
# @param Name: 转码模板标识过滤条件,长度限制:64 个字符。
|
10896
|
+
# @type Name: String
|
10859
10897
|
|
10860
|
-
attr_accessor :Definitions, :Type, :ContainerType, :TEHDType, :Offset, :Limit, :TranscodeType
|
10898
|
+
attr_accessor :Definitions, :Type, :ContainerType, :TEHDType, :Offset, :Limit, :TranscodeType, :Name
|
10861
10899
|
|
10862
|
-
def initialize(definitions=nil, type=nil, containertype=nil, tehdtype=nil, offset=nil, limit=nil, transcodetype=nil)
|
10900
|
+
def initialize(definitions=nil, type=nil, containertype=nil, tehdtype=nil, offset=nil, limit=nil, transcodetype=nil, name=nil)
|
10863
10901
|
@Definitions = definitions
|
10864
10902
|
@Type = type
|
10865
10903
|
@ContainerType = containertype
|
@@ -10867,6 +10905,7 @@ module TencentCloud
|
|
10867
10905
|
@Offset = offset
|
10868
10906
|
@Limit = limit
|
10869
10907
|
@TranscodeType = transcodetype
|
10908
|
+
@Name = name
|
10870
10909
|
end
|
10871
10910
|
|
10872
10911
|
def deserialize(params)
|
@@ -10877,6 +10916,7 @@ module TencentCloud
|
|
10877
10916
|
@Offset = params['Offset']
|
10878
10917
|
@Limit = params['Limit']
|
10879
10918
|
@TranscodeType = params['TranscodeType']
|
10919
|
+
@Name = params['Name']
|
10880
10920
|
end
|
10881
10921
|
end
|
10882
10922
|
|
@@ -10925,14 +10965,17 @@ module TencentCloud
|
|
10925
10965
|
# <li>默认值:10;</li>
|
10926
10966
|
# <li>最大值:100。</li>
|
10927
10967
|
# @type Limit: Integer
|
10968
|
+
# @param Name: 水印模板标识过滤条件,长度限制:64 个字符。
|
10969
|
+
# @type Name: String
|
10928
10970
|
|
10929
|
-
attr_accessor :Definitions, :Type, :Offset, :Limit
|
10971
|
+
attr_accessor :Definitions, :Type, :Offset, :Limit, :Name
|
10930
10972
|
|
10931
|
-
def initialize(definitions=nil, type=nil, offset=nil, limit=nil)
|
10973
|
+
def initialize(definitions=nil, type=nil, offset=nil, limit=nil, name=nil)
|
10932
10974
|
@Definitions = definitions
|
10933
10975
|
@Type = type
|
10934
10976
|
@Offset = offset
|
10935
10977
|
@Limit = limit
|
10978
|
+
@Name = name
|
10936
10979
|
end
|
10937
10980
|
|
10938
10981
|
def deserialize(params)
|
@@ -10940,6 +10983,7 @@ module TencentCloud
|
|
10940
10983
|
@Type = params['Type']
|
10941
10984
|
@Offset = params['Offset']
|
10942
10985
|
@Limit = params['Limit']
|
10986
|
+
@Name = params['Name']
|
10943
10987
|
end
|
10944
10988
|
end
|
10945
10989
|
|
@@ -20947,7 +20991,7 @@ module TencentCloud
|
|
20947
20991
|
# @type Switch: String
|
20948
20992
|
# @param LabelSet: 用户自定义文本过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回。如果要使用标签过滤功能,添加自定义文本关键词素材时需要添加对应标签。
|
20949
20993
|
# 标签个数最多 10 个,每个标签长度最多 16 个字符。
|
20950
|
-
# @type LabelSet:
|
20994
|
+
# @type LabelSet: Array
|
20951
20995
|
# @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规。取值范围:0~100。
|
20952
20996
|
# @type BlockConfidence: Integer
|
20953
20997
|
# @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核。取值范围:0~100。
|
@@ -21108,12 +21152,14 @@ module TencentCloud
|
|
21108
21152
|
# <li>vp9:VP9 编码</li>
|
21109
21153
|
# <li>mpeg2:MPEG2 编码</li>
|
21110
21154
|
# <li>dnxhd:DNxHD 编码</li>
|
21155
|
+
# <li>mv-hevc:MV-HEVC 编码</li>
|
21111
21156
|
# 注意:目前 H.265 编码必须指定分辨率,并且需要在 640*480 以内。
|
21112
21157
|
|
21113
21158
|
# 注意:av1 编码容器目前只支持 mp4 ,webm,mkv。
|
21114
21159
|
# 注意:H.266 编码容器目前只支持 mp4 ,hls,ts,mov。
|
21115
21160
|
# 注意:VP8、VP9编码容器目前只支持webm,mkv。
|
21116
21161
|
# 注意:MPEG2、dnxhd 编码容器目前只支持mxf。
|
21162
|
+
# 注意:MV-HEVC编码容器目前只支持mp4,hls,mov。其中hls格式只支持mp4分片格式。
|
21117
21163
|
# @type Codec: String
|
21118
21164
|
# @param Fps: 视频帧率,取值范围:
|
21119
21165
|
# 当FpsDenominator的值为空时,范围:[0, 120],单位:Hz;
|
@@ -21143,8 +21189,7 @@ module TencentCloud
|
|
21143
21189
|
# <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
|
21144
21190
|
# 默认值:0。
|
21145
21191
|
# @type Height: Integer
|
21146
|
-
# @param Gop: 关键帧 I 帧之间的间隔,取值范围:0 和 [1, 100000],单位:帧数。
|
21147
|
-
# 当填 0 或不填时,系统将自动设置 gop 长度。
|
21192
|
+
# @param Gop: 关键帧 I 帧之间的间隔,取值范围:0 和 [1, 100000],单位:帧数。 当填 0 或不填时,系统将自动设置 gop 长度。
|
21148
21193
|
# @type Gop: Integer
|
21149
21194
|
# @param FillType: 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
|
21150
21195
|
# <li> stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;</li>
|
@@ -21170,10 +21215,16 @@ module TencentCloud
|
|
21170
21215
|
# 注意:值必须大于0
|
21171
21216
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
21172
21217
|
# @type FpsDenominator: Integer
|
21218
|
+
# @param Stereo3dType: 3D视频拼接方式,仅mv-hevc,3D视频生效,可选值:
|
21219
|
+
# <li>side_by_side:左右视角</li>
|
21220
|
+
# <li>top_bottom:上下视角</li>
|
21221
|
+
# 默认值:side_by_side
|
21222
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21223
|
+
# @type Stereo3dType: String
|
21173
21224
|
|
21174
|
-
attr_accessor :Codec, :Fps, :Bitrate, :ResolutionAdaptive, :Width, :Height, :Gop, :FillType, :Vcrf, :SegmentType, :FpsDenominator
|
21225
|
+
attr_accessor :Codec, :Fps, :Bitrate, :ResolutionAdaptive, :Width, :Height, :Gop, :FillType, :Vcrf, :SegmentType, :FpsDenominator, :Stereo3dType
|
21175
21226
|
|
21176
|
-
def initialize(codec=nil, fps=nil, bitrate=nil, resolutionadaptive=nil, width=nil, height=nil, gop=nil, filltype=nil, vcrf=nil, segmenttype=nil, fpsdenominator=nil)
|
21227
|
+
def initialize(codec=nil, fps=nil, bitrate=nil, resolutionadaptive=nil, width=nil, height=nil, gop=nil, filltype=nil, vcrf=nil, segmenttype=nil, fpsdenominator=nil, stereo3dtype=nil)
|
21177
21228
|
@Codec = codec
|
21178
21229
|
@Fps = fps
|
21179
21230
|
@Bitrate = bitrate
|
@@ -21185,6 +21236,7 @@ module TencentCloud
|
|
21185
21236
|
@Vcrf = vcrf
|
21186
21237
|
@SegmentType = segmenttype
|
21187
21238
|
@FpsDenominator = fpsdenominator
|
21239
|
+
@Stereo3dType = stereo3dtype
|
21188
21240
|
end
|
21189
21241
|
|
21190
21242
|
def deserialize(params)
|
@@ -21199,6 +21251,7 @@ module TencentCloud
|
|
21199
21251
|
@Vcrf = params['Vcrf']
|
21200
21252
|
@SegmentType = params['SegmentType']
|
21201
21253
|
@FpsDenominator = params['FpsDenominator']
|
21254
|
+
@Stereo3dType = params['Stereo3dType']
|
21202
21255
|
end
|
21203
21256
|
end
|
21204
21257
|
|
@@ -21213,12 +21266,14 @@ module TencentCloud
|
|
21213
21266
|
# <li>vp9:VP9 编码</li>
|
21214
21267
|
# <li>mpeg2:MPEG2 编码</li>
|
21215
21268
|
# <li>dnxhd:DNxHD 编码</li>
|
21269
|
+
# <li>mv-hevc:MV-HEVC 编码</li>
|
21216
21270
|
# 注意:目前 H.265 编码必须指定分辨率,并且需要在 640*480 以内。
|
21217
21271
|
|
21218
21272
|
# 注意:av1 编码容器目前只支持 mp4 ,webm,mkv。
|
21219
21273
|
# 注意:H.266 编码容器目前只支持 mp4 ,hls,ts,mov。
|
21220
21274
|
# 注意:VP8、VP9编码容器目前只支持webm,mkv。
|
21221
21275
|
# 注意:MPEG2、dnxhd 编码容器目前只支持mxf。
|
21276
|
+
# 注意:MV-HEVC编码容器目前只支持mp4,hls,mov。其中hls格式只支持mp4分片格式。
|
21222
21277
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
21223
21278
|
# @type Codec: String
|
21224
21279
|
# @param Fps: 视频帧率,取值范围:
|
@@ -21279,10 +21334,16 @@ module TencentCloud
|
|
21279
21334
|
# 注意:值必须大于0
|
21280
21335
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
21281
21336
|
# @type FpsDenominator: Integer
|
21337
|
+
# @param Stereo3dType: 3D视频拼接方式,仅mv-hevc,3D视频生效,可选值:
|
21338
|
+
# <li>side_by_side:左右视角</li>
|
21339
|
+
# <li>top_bottom:上下视角</li>
|
21340
|
+
# 默认值:side_by_side
|
21341
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21342
|
+
# @type Stereo3dType: String
|
21282
21343
|
|
21283
|
-
attr_accessor :Codec, :Fps, :Bitrate, :ResolutionAdaptive, :Width, :Height, :Gop, :FillType, :Vcrf, :ContentAdaptStream, :SegmentType, :FpsDenominator
|
21344
|
+
attr_accessor :Codec, :Fps, :Bitrate, :ResolutionAdaptive, :Width, :Height, :Gop, :FillType, :Vcrf, :ContentAdaptStream, :SegmentType, :FpsDenominator, :Stereo3dType
|
21284
21345
|
|
21285
|
-
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)
|
21346
|
+
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, stereo3dtype=nil)
|
21286
21347
|
@Codec = codec
|
21287
21348
|
@Fps = fps
|
21288
21349
|
@Bitrate = bitrate
|
@@ -21295,6 +21356,7 @@ module TencentCloud
|
|
21295
21356
|
@ContentAdaptStream = contentadaptstream
|
21296
21357
|
@SegmentType = segmenttype
|
21297
21358
|
@FpsDenominator = fpsdenominator
|
21359
|
+
@Stereo3dType = stereo3dtype
|
21298
21360
|
end
|
21299
21361
|
|
21300
21362
|
def deserialize(params)
|
@@ -21310,6 +21372,7 @@ module TencentCloud
|
|
21310
21372
|
@ContentAdaptStream = params['ContentAdaptStream']
|
21311
21373
|
@SegmentType = params['SegmentType']
|
21312
21374
|
@FpsDenominator = params['FpsDenominator']
|
21375
|
+
@Stereo3dType = params['Stereo3dType']
|
21313
21376
|
end
|
21314
21377
|
end
|
21315
21378
|
|
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.
|
4
|
+
version: 3.0.905
|
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-09-
|
11
|
+
date: 2024-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|