tencentcloud-sdk-mps 1.0.306 → 1.0.309
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/v20190612/models.rb +60 -14
- 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: 15383d087cf38527a84c55b2df51e9c8333fffa7
|
|
4
|
+
data.tar.gz: fe18ab8a3615ccf97e7a4696d4fe20a0bda890c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f477f8ad054dd3f290a5c02b4442e2ac78cc4c7bb82671cfecc932792dc780f1b043efb4766e9760f3ef1accaed9eae9ea51b4dd90f4f527e92e8b91ba491d41
|
|
7
|
+
data.tar.gz: 1cb09af447e3573bc6c8307daa078d1340934f10c08edabd9b0424a55c57279b603dfa2f3a39358cafda2a2b300cc7c1657641e37e7c2606f0619039d46204e4
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.309
|
data/lib/v20190612/models.rb
CHANGED
|
@@ -41,10 +41,15 @@ module TencentCloud
|
|
|
41
41
|
# @type CreateTime: String
|
|
42
42
|
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
43
43
|
# @type UpdateTime: String
|
|
44
|
+
# @param Type: 模板类型,取值范围:
|
|
45
|
+
# * Preset:系统预置模板;
|
|
46
|
+
# * Custom:用户自定义模板。
|
|
47
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
48
|
+
# @type Type: String
|
|
44
49
|
|
|
45
|
-
attr_accessor :Definition, :Name, :Comment, :ClassificationConfigure, :TagConfigure, :CoverConfigure, :FrameTagConfigure, :CreateTime, :UpdateTime
|
|
50
|
+
attr_accessor :Definition, :Name, :Comment, :ClassificationConfigure, :TagConfigure, :CoverConfigure, :FrameTagConfigure, :CreateTime, :UpdateTime, :Type
|
|
46
51
|
|
|
47
|
-
def initialize(definition=nil, name=nil, comment=nil, classificationconfigure=nil, tagconfigure=nil, coverconfigure=nil, frametagconfigure=nil, createtime=nil, updatetime=nil)
|
|
52
|
+
def initialize(definition=nil, name=nil, comment=nil, classificationconfigure=nil, tagconfigure=nil, coverconfigure=nil, frametagconfigure=nil, createtime=nil, updatetime=nil, type=nil)
|
|
48
53
|
@Definition = definition
|
|
49
54
|
@Name = name
|
|
50
55
|
@Comment = comment
|
|
@@ -54,6 +59,7 @@ module TencentCloud
|
|
|
54
59
|
@FrameTagConfigure = frametagconfigure
|
|
55
60
|
@CreateTime = createtime
|
|
56
61
|
@UpdateTime = updatetime
|
|
62
|
+
@Type = type
|
|
57
63
|
end
|
|
58
64
|
|
|
59
65
|
def deserialize(params)
|
|
@@ -78,6 +84,7 @@ module TencentCloud
|
|
|
78
84
|
end
|
|
79
85
|
@CreateTime = params['CreateTime']
|
|
80
86
|
@UpdateTime = params['UpdateTime']
|
|
87
|
+
@Type = params['Type']
|
|
81
88
|
end
|
|
82
89
|
end
|
|
83
90
|
|
|
@@ -103,10 +110,15 @@ module TencentCloud
|
|
|
103
110
|
# @type CreateTime: String
|
|
104
111
|
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
105
112
|
# @type UpdateTime: String
|
|
113
|
+
# @param Type: 模板类型,取值范围:
|
|
114
|
+
# * Preset:系统预置模板;
|
|
115
|
+
# * Custom:用户自定义模板。
|
|
116
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
117
|
+
# @type Type: String
|
|
106
118
|
|
|
107
|
-
attr_accessor :Definition, :Name, :Comment, :FaceConfigure, :OcrFullTextConfigure, :OcrWordsConfigure, :AsrFullTextConfigure, :AsrWordsConfigure, :CreateTime, :UpdateTime
|
|
119
|
+
attr_accessor :Definition, :Name, :Comment, :FaceConfigure, :OcrFullTextConfigure, :OcrWordsConfigure, :AsrFullTextConfigure, :AsrWordsConfigure, :CreateTime, :UpdateTime, :Type
|
|
108
120
|
|
|
109
|
-
def initialize(definition=nil, name=nil, comment=nil, faceconfigure=nil, ocrfulltextconfigure=nil, ocrwordsconfigure=nil, asrfulltextconfigure=nil, asrwordsconfigure=nil, createtime=nil, updatetime=nil)
|
|
121
|
+
def initialize(definition=nil, name=nil, comment=nil, faceconfigure=nil, ocrfulltextconfigure=nil, ocrwordsconfigure=nil, asrfulltextconfigure=nil, asrwordsconfigure=nil, createtime=nil, updatetime=nil, type=nil)
|
|
110
122
|
@Definition = definition
|
|
111
123
|
@Name = name
|
|
112
124
|
@Comment = comment
|
|
@@ -117,6 +129,7 @@ module TencentCloud
|
|
|
117
129
|
@AsrWordsConfigure = asrwordsconfigure
|
|
118
130
|
@CreateTime = createtime
|
|
119
131
|
@UpdateTime = updatetime
|
|
132
|
+
@Type = type
|
|
120
133
|
end
|
|
121
134
|
|
|
122
135
|
def deserialize(params)
|
|
@@ -145,6 +158,7 @@ module TencentCloud
|
|
|
145
158
|
end
|
|
146
159
|
@CreateTime = params['CreateTime']
|
|
147
160
|
@UpdateTime = params['UpdateTime']
|
|
161
|
+
@Type = params['Type']
|
|
148
162
|
end
|
|
149
163
|
end
|
|
150
164
|
|
|
@@ -3168,10 +3182,15 @@ module TencentCloud
|
|
|
3168
3182
|
# @type CreateTime: String
|
|
3169
3183
|
# @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
3170
3184
|
# @type UpdateTime: String
|
|
3185
|
+
# @param Type: 模板类型,取值范围:
|
|
3186
|
+
# * Preset:系统预置模板;
|
|
3187
|
+
# * Custom:用户自定义模板。
|
|
3188
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3189
|
+
# @type Type: String
|
|
3171
3190
|
|
|
3172
|
-
attr_accessor :Definition, :Name, :Comment, :PornConfigure, :TerrorismConfigure, :PoliticalConfigure, :ProhibitedConfigure, :UserDefineConfigure, :CreateTime, :UpdateTime
|
|
3191
|
+
attr_accessor :Definition, :Name, :Comment, :PornConfigure, :TerrorismConfigure, :PoliticalConfigure, :ProhibitedConfigure, :UserDefineConfigure, :CreateTime, :UpdateTime, :Type
|
|
3173
3192
|
|
|
3174
|
-
def initialize(definition=nil, name=nil, comment=nil, pornconfigure=nil, terrorismconfigure=nil, politicalconfigure=nil, prohibitedconfigure=nil, userdefineconfigure=nil, createtime=nil, updatetime=nil)
|
|
3193
|
+
def initialize(definition=nil, name=nil, comment=nil, pornconfigure=nil, terrorismconfigure=nil, politicalconfigure=nil, prohibitedconfigure=nil, userdefineconfigure=nil, createtime=nil, updatetime=nil, type=nil)
|
|
3175
3194
|
@Definition = definition
|
|
3176
3195
|
@Name = name
|
|
3177
3196
|
@Comment = comment
|
|
@@ -3182,6 +3201,7 @@ module TencentCloud
|
|
|
3182
3201
|
@UserDefineConfigure = userdefineconfigure
|
|
3183
3202
|
@CreateTime = createtime
|
|
3184
3203
|
@UpdateTime = updatetime
|
|
3204
|
+
@Type = type
|
|
3185
3205
|
end
|
|
3186
3206
|
|
|
3187
3207
|
def deserialize(params)
|
|
@@ -3210,6 +3230,7 @@ module TencentCloud
|
|
|
3210
3230
|
end
|
|
3211
3231
|
@CreateTime = params['CreateTime']
|
|
3212
3232
|
@UpdateTime = params['UpdateTime']
|
|
3233
|
+
@Type = params['Type']
|
|
3213
3234
|
end
|
|
3214
3235
|
end
|
|
3215
3236
|
|
|
@@ -4765,19 +4786,25 @@ module TencentCloud
|
|
|
4765
4786
|
# @type Offset: Integer
|
|
4766
4787
|
# @param Limit: 返回记录条数,默认值:10,最大值:100。
|
|
4767
4788
|
# @type Limit: Integer
|
|
4789
|
+
# @param Type: 模板类型过滤条件,不填则返回所有,可选值:
|
|
4790
|
+
# * Preset:系统预置模板;
|
|
4791
|
+
# * Custom:用户自定义模板。
|
|
4792
|
+
# @type Type: String
|
|
4768
4793
|
|
|
4769
|
-
attr_accessor :Definitions, :Offset, :Limit
|
|
4794
|
+
attr_accessor :Definitions, :Offset, :Limit, :Type
|
|
4770
4795
|
|
|
4771
|
-
def initialize(definitions=nil, offset=nil, limit=nil)
|
|
4796
|
+
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
|
|
4772
4797
|
@Definitions = definitions
|
|
4773
4798
|
@Offset = offset
|
|
4774
4799
|
@Limit = limit
|
|
4800
|
+
@Type = type
|
|
4775
4801
|
end
|
|
4776
4802
|
|
|
4777
4803
|
def deserialize(params)
|
|
4778
4804
|
@Definitions = params['Definitions']
|
|
4779
4805
|
@Offset = params['Offset']
|
|
4780
4806
|
@Limit = params['Limit']
|
|
4807
|
+
@Type = params['Type']
|
|
4781
4808
|
end
|
|
4782
4809
|
end
|
|
4783
4810
|
|
|
@@ -4820,19 +4847,25 @@ module TencentCloud
|
|
|
4820
4847
|
# @type Offset: Integer
|
|
4821
4848
|
# @param Limit: 返回记录条数,默认值:10,最大值:50。
|
|
4822
4849
|
# @type Limit: Integer
|
|
4850
|
+
# @param Type: 模板类型过滤条件,不填则返回所有,可选值:
|
|
4851
|
+
# * Preset:系统预置模板;
|
|
4852
|
+
# * Custom:用户自定义模板。
|
|
4853
|
+
# @type Type: String
|
|
4823
4854
|
|
|
4824
|
-
attr_accessor :Definitions, :Offset, :Limit
|
|
4855
|
+
attr_accessor :Definitions, :Offset, :Limit, :Type
|
|
4825
4856
|
|
|
4826
|
-
def initialize(definitions=nil, offset=nil, limit=nil)
|
|
4857
|
+
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
|
|
4827
4858
|
@Definitions = definitions
|
|
4828
4859
|
@Offset = offset
|
|
4829
4860
|
@Limit = limit
|
|
4861
|
+
@Type = type
|
|
4830
4862
|
end
|
|
4831
4863
|
|
|
4832
4864
|
def deserialize(params)
|
|
4833
4865
|
@Definitions = params['Definitions']
|
|
4834
4866
|
@Offset = params['Offset']
|
|
4835
4867
|
@Limit = params['Limit']
|
|
4868
|
+
@Type = params['Type']
|
|
4836
4869
|
end
|
|
4837
4870
|
end
|
|
4838
4871
|
|
|
@@ -4997,19 +5030,25 @@ module TencentCloud
|
|
|
4997
5030
|
# @type Offset: Integer
|
|
4998
5031
|
# @param Limit: 返回记录条数,默认值:10,最大值:50。
|
|
4999
5032
|
# @type Limit: Integer
|
|
5033
|
+
# @param Type: 模板类型过滤条件,不填则返回所有,可选值:
|
|
5034
|
+
# * Preset:系统预置模板;
|
|
5035
|
+
# * Custom:用户自定义模板。
|
|
5036
|
+
# @type Type: String
|
|
5000
5037
|
|
|
5001
|
-
attr_accessor :Definitions, :Offset, :Limit
|
|
5038
|
+
attr_accessor :Definitions, :Offset, :Limit, :Type
|
|
5002
5039
|
|
|
5003
|
-
def initialize(definitions=nil, offset=nil, limit=nil)
|
|
5040
|
+
def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
|
|
5004
5041
|
@Definitions = definitions
|
|
5005
5042
|
@Offset = offset
|
|
5006
5043
|
@Limit = limit
|
|
5044
|
+
@Type = type
|
|
5007
5045
|
end
|
|
5008
5046
|
|
|
5009
5047
|
def deserialize(params)
|
|
5010
5048
|
@Definitions = params['Definitions']
|
|
5011
5049
|
@Offset = params['Offset']
|
|
5012
5050
|
@Limit = params['Limit']
|
|
5051
|
+
@Type = params['Type']
|
|
5013
5052
|
end
|
|
5014
5053
|
end
|
|
5015
5054
|
|
|
@@ -12067,10 +12106,15 @@ module TencentCloud
|
|
|
12067
12106
|
# @param Vcrf: 视频恒定码率控制因子。取值范围为[0, 51],填0表示禁用该参数。
|
|
12068
12107
|
# 如果没有特殊需求,不建议指定该参数。
|
|
12069
12108
|
# @type Vcrf: Integer
|
|
12109
|
+
# @param ContentAdaptStream: 内容自适应编码。可选值:
|
|
12110
|
+
# <li>0:不开启</li>
|
|
12111
|
+
# <li>1:开启</li>
|
|
12112
|
+
# 默认值: 0. 当开启该参数时,将会自适应生成多个不同分辨率,不同码率的码流, 其中VideoTemplate的宽和高为多个码流中的最大分辨率,VideoTemplate中的码率为多个码流中的最高码率, VideoTemplate中的vcrf为多个码流中的最高质量。 当不设置分辨率、码率和vcrf时, ContentAdaptStream 参数生成的最高分辨率为视频源的分辨率,视频质量为接近vmaf95分。 若要开启该参数或了解计费细节, 请联系您的腾讯云商务。
|
|
12113
|
+
# @type ContentAdaptStream: Integer
|
|
12070
12114
|
|
|
12071
|
-
attr_accessor :Codec, :Fps, :Bitrate, :ResolutionAdaptive, :Width, :Height, :Gop, :FillType, :Vcrf
|
|
12115
|
+
attr_accessor :Codec, :Fps, :Bitrate, :ResolutionAdaptive, :Width, :Height, :Gop, :FillType, :Vcrf, :ContentAdaptStream
|
|
12072
12116
|
|
|
12073
|
-
def initialize(codec=nil, fps=nil, bitrate=nil, resolutionadaptive=nil, width=nil, height=nil, gop=nil, filltype=nil, vcrf=nil)
|
|
12117
|
+
def initialize(codec=nil, fps=nil, bitrate=nil, resolutionadaptive=nil, width=nil, height=nil, gop=nil, filltype=nil, vcrf=nil, contentadaptstream=nil)
|
|
12074
12118
|
@Codec = codec
|
|
12075
12119
|
@Fps = fps
|
|
12076
12120
|
@Bitrate = bitrate
|
|
@@ -12080,6 +12124,7 @@ module TencentCloud
|
|
|
12080
12124
|
@Gop = gop
|
|
12081
12125
|
@FillType = filltype
|
|
12082
12126
|
@Vcrf = vcrf
|
|
12127
|
+
@ContentAdaptStream = contentadaptstream
|
|
12083
12128
|
end
|
|
12084
12129
|
|
|
12085
12130
|
def deserialize(params)
|
|
@@ -12092,6 +12137,7 @@ module TencentCloud
|
|
|
12092
12137
|
@Gop = params['Gop']
|
|
12093
12138
|
@FillType = params['FillType']
|
|
12094
12139
|
@Vcrf = params['Vcrf']
|
|
12140
|
+
@ContentAdaptStream = params['ContentAdaptStream']
|
|
12095
12141
|
end
|
|
12096
12142
|
end
|
|
12097
12143
|
|
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: 1.0.
|
|
4
|
+
version: 1.0.309
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-05-
|
|
11
|
+
date: 2022-05-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|