tencentcloud-sdk-ie 1.0.200
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 +7 -0
- data/lib/VERSION +1 -0
- data/lib/tencentcloud-sdk-ie.rb +11 -0
- data/lib/v20200304/client.rb +276 -0
- data/lib/v20200304/models.rb +3506 -0
- metadata +66 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8373f4b7b14b47fea445f5cf37c2f7a69af8658a
|
4
|
+
data.tar.gz: 3bccc98fac26a340732d9c665e5541e47f414795
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: fecd1a4d51e45fa22c264f908afa8e2fb2a5c89901922236630b8476261f93d4d8aced8e185a3d861c2af55b33cb963c0821e7cb453b2970f6a8f030bbfad8a3
|
7
|
+
data.tar.gz: d1ec7d99b880da6174717e09db5761d508a24021993764f272d9dfef815a73335aaf710718001654d141c8df1c1a1a05433e00dcd3f2d92c6bcb8ffa8a1b68ce
|
data/lib/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0.200
|
@@ -0,0 +1,276 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
require 'json'
|
18
|
+
|
19
|
+
module TencentCloud
|
20
|
+
module Ie
|
21
|
+
module V20200304
|
22
|
+
class Client < TencentCloud::Common::AbstractClient
|
23
|
+
|
24
|
+
def initialize(credential, region, profile = nil)
|
25
|
+
api_version = '2020-03-04'
|
26
|
+
api_endpoint = 'ie.tencentcloudapi.com'
|
27
|
+
sdk_version = 'IE_' + File.read(File.expand_path('../VERSION', __dir__)).strip
|
28
|
+
super(credential, region, api_version, api_endpoint, sdk_version, profile)
|
29
|
+
end
|
30
|
+
|
31
|
+
|
32
|
+
# 创建编辑理解任务,可以同时选择视频标签识别、分类识别、智能拆条、智能集锦、智能封面和片头片尾识别中的一项或者多项能力。
|
33
|
+
|
34
|
+
# @param request: Request instance for CreateEditingTask.
|
35
|
+
# @type request: :class:`Tencentcloud::ie::V20200304::CreateEditingTaskRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::ie::V20200304::CreateEditingTaskResponse`
|
37
|
+
def CreateEditingTask(request)
|
38
|
+
body = send_request('CreateEditingTask', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = CreateEditingTaskResponse.new
|
42
|
+
model.deserialize(response['Response'])
|
43
|
+
model
|
44
|
+
else
|
45
|
+
code = response['Response']['Error']['Code']
|
46
|
+
message = response['Response']['Error']['Message']
|
47
|
+
reqid = response['Response']['RequestId']
|
48
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
49
|
+
end
|
50
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
51
|
+
raise e
|
52
|
+
rescue StandardError => e
|
53
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
54
|
+
end
|
55
|
+
|
56
|
+
# 用于创建编辑处理任务,如媒体截取、媒体编辑、媒体拼接、媒体字幕。
|
57
|
+
|
58
|
+
# @param request: Request instance for CreateMediaProcessTask.
|
59
|
+
# @type request: :class:`Tencentcloud::ie::V20200304::CreateMediaProcessTaskRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::ie::V20200304::CreateMediaProcessTaskResponse`
|
61
|
+
def CreateMediaProcessTask(request)
|
62
|
+
body = send_request('CreateMediaProcessTask', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = CreateMediaProcessTaskResponse.new
|
66
|
+
model.deserialize(response['Response'])
|
67
|
+
model
|
68
|
+
else
|
69
|
+
code = response['Response']['Error']['Code']
|
70
|
+
message = response['Response']['Error']['Message']
|
71
|
+
reqid = response['Response']['RequestId']
|
72
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
73
|
+
end
|
74
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
75
|
+
raise e
|
76
|
+
rescue StandardError => e
|
77
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
78
|
+
end
|
79
|
+
|
80
|
+
# 创建画质重生任务,对视频进行转码、去噪、去划痕、去毛刺、超分、细节增强和色彩增强。
|
81
|
+
|
82
|
+
# @param request: Request instance for CreateMediaQualityRestorationTask.
|
83
|
+
# @type request: :class:`Tencentcloud::ie::V20200304::CreateMediaQualityRestorationTaskRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::ie::V20200304::CreateMediaQualityRestorationTaskResponse`
|
85
|
+
def CreateMediaQualityRestorationTask(request)
|
86
|
+
body = send_request('CreateMediaQualityRestorationTask', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = CreateMediaQualityRestorationTaskResponse.new
|
90
|
+
model.deserialize(response['Response'])
|
91
|
+
model
|
92
|
+
else
|
93
|
+
code = response['Response']['Error']['Code']
|
94
|
+
message = response['Response']['Error']['Message']
|
95
|
+
reqid = response['Response']['RequestId']
|
96
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
97
|
+
end
|
98
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
99
|
+
raise e
|
100
|
+
rescue StandardError => e
|
101
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
102
|
+
end
|
103
|
+
|
104
|
+
# 通过接口可以智能检测视频画面中抖动重影、模糊、低光照、过曝光、黑边、白边、黑屏、白屏、花屏、噪点、马赛克、二维码等在内的多个场景,还可以自动检测视频无音频异常、无声音片段。
|
105
|
+
|
106
|
+
# @param request: Request instance for CreateQualityControlTask.
|
107
|
+
# @type request: :class:`Tencentcloud::ie::V20200304::CreateQualityControlTaskRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::ie::V20200304::CreateQualityControlTaskResponse`
|
109
|
+
def CreateQualityControlTask(request)
|
110
|
+
body = send_request('CreateQualityControlTask', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = CreateQualityControlTaskResponse.new
|
114
|
+
model.deserialize(response['Response'])
|
115
|
+
model
|
116
|
+
else
|
117
|
+
code = response['Response']['Error']['Code']
|
118
|
+
message = response['Response']['Error']['Message']
|
119
|
+
reqid = response['Response']['RequestId']
|
120
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
121
|
+
end
|
122
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
123
|
+
raise e
|
124
|
+
rescue StandardError => e
|
125
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
126
|
+
end
|
127
|
+
|
128
|
+
# 获取编辑理解任务结果。
|
129
|
+
|
130
|
+
# @param request: Request instance for DescribeEditingTaskResult.
|
131
|
+
# @type request: :class:`Tencentcloud::ie::V20200304::DescribeEditingTaskResultRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::ie::V20200304::DescribeEditingTaskResultResponse`
|
133
|
+
def DescribeEditingTaskResult(request)
|
134
|
+
body = send_request('DescribeEditingTaskResult', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = DescribeEditingTaskResultResponse.new
|
138
|
+
model.deserialize(response['Response'])
|
139
|
+
model
|
140
|
+
else
|
141
|
+
code = response['Response']['Error']['Code']
|
142
|
+
message = response['Response']['Error']['Message']
|
143
|
+
reqid = response['Response']['RequestId']
|
144
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
145
|
+
end
|
146
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
147
|
+
raise e
|
148
|
+
rescue StandardError => e
|
149
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
150
|
+
end
|
151
|
+
|
152
|
+
# 用于获取编辑处理任务的结果。
|
153
|
+
|
154
|
+
# @param request: Request instance for DescribeMediaProcessTaskResult.
|
155
|
+
# @type request: :class:`Tencentcloud::ie::V20200304::DescribeMediaProcessTaskResultRequest`
|
156
|
+
# @rtype: :class:`Tencentcloud::ie::V20200304::DescribeMediaProcessTaskResultResponse`
|
157
|
+
def DescribeMediaProcessTaskResult(request)
|
158
|
+
body = send_request('DescribeMediaProcessTaskResult', request.serialize)
|
159
|
+
response = JSON.parse(body)
|
160
|
+
if response['Response'].key?('Error') == false
|
161
|
+
model = DescribeMediaProcessTaskResultResponse.new
|
162
|
+
model.deserialize(response['Response'])
|
163
|
+
model
|
164
|
+
else
|
165
|
+
code = response['Response']['Error']['Code']
|
166
|
+
message = response['Response']['Error']['Message']
|
167
|
+
reqid = response['Response']['RequestId']
|
168
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
169
|
+
end
|
170
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
171
|
+
raise e
|
172
|
+
rescue StandardError => e
|
173
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
174
|
+
end
|
175
|
+
|
176
|
+
# 获取画质重生任务结果,查看结束后的文件信息
|
177
|
+
|
178
|
+
# @param request: Request instance for DescribeMediaQualityRestorationTaskRusult.
|
179
|
+
# @type request: :class:`Tencentcloud::ie::V20200304::DescribeMediaQualityRestorationTaskRusultRequest`
|
180
|
+
# @rtype: :class:`Tencentcloud::ie::V20200304::DescribeMediaQualityRestorationTaskRusultResponse`
|
181
|
+
def DescribeMediaQualityRestorationTaskRusult(request)
|
182
|
+
body = send_request('DescribeMediaQualityRestorationTaskRusult', request.serialize)
|
183
|
+
response = JSON.parse(body)
|
184
|
+
if response['Response'].key?('Error') == false
|
185
|
+
model = DescribeMediaQualityRestorationTaskRusultResponse.new
|
186
|
+
model.deserialize(response['Response'])
|
187
|
+
model
|
188
|
+
else
|
189
|
+
code = response['Response']['Error']['Code']
|
190
|
+
message = response['Response']['Error']['Message']
|
191
|
+
reqid = response['Response']['RequestId']
|
192
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
193
|
+
end
|
194
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
195
|
+
raise e
|
196
|
+
rescue StandardError => e
|
197
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
198
|
+
end
|
199
|
+
|
200
|
+
# 获取媒体质检任务结果
|
201
|
+
|
202
|
+
# @param request: Request instance for DescribeQualityControlTaskResult.
|
203
|
+
# @type request: :class:`Tencentcloud::ie::V20200304::DescribeQualityControlTaskResultRequest`
|
204
|
+
# @rtype: :class:`Tencentcloud::ie::V20200304::DescribeQualityControlTaskResultResponse`
|
205
|
+
def DescribeQualityControlTaskResult(request)
|
206
|
+
body = send_request('DescribeQualityControlTaskResult', request.serialize)
|
207
|
+
response = JSON.parse(body)
|
208
|
+
if response['Response'].key?('Error') == false
|
209
|
+
model = DescribeQualityControlTaskResultResponse.new
|
210
|
+
model.deserialize(response['Response'])
|
211
|
+
model
|
212
|
+
else
|
213
|
+
code = response['Response']['Error']['Code']
|
214
|
+
message = response['Response']['Error']['Message']
|
215
|
+
reqid = response['Response']['RequestId']
|
216
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
217
|
+
end
|
218
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
219
|
+
raise e
|
220
|
+
rescue StandardError => e
|
221
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
222
|
+
end
|
223
|
+
|
224
|
+
# 用于停止正在进行中的编辑处理任务。
|
225
|
+
|
226
|
+
# @param request: Request instance for StopMediaProcessTask.
|
227
|
+
# @type request: :class:`Tencentcloud::ie::V20200304::StopMediaProcessTaskRequest`
|
228
|
+
# @rtype: :class:`Tencentcloud::ie::V20200304::StopMediaProcessTaskResponse`
|
229
|
+
def StopMediaProcessTask(request)
|
230
|
+
body = send_request('StopMediaProcessTask', request.serialize)
|
231
|
+
response = JSON.parse(body)
|
232
|
+
if response['Response'].key?('Error') == false
|
233
|
+
model = StopMediaProcessTaskResponse.new
|
234
|
+
model.deserialize(response['Response'])
|
235
|
+
model
|
236
|
+
else
|
237
|
+
code = response['Response']['Error']['Code']
|
238
|
+
message = response['Response']['Error']['Message']
|
239
|
+
reqid = response['Response']['RequestId']
|
240
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
241
|
+
end
|
242
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
243
|
+
raise e
|
244
|
+
rescue StandardError => e
|
245
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
246
|
+
end
|
247
|
+
|
248
|
+
# 删除正在进行的画质重生任务
|
249
|
+
|
250
|
+
# @param request: Request instance for StopMediaQualityRestorationTask.
|
251
|
+
# @type request: :class:`Tencentcloud::ie::V20200304::StopMediaQualityRestorationTaskRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::ie::V20200304::StopMediaQualityRestorationTaskResponse`
|
253
|
+
def StopMediaQualityRestorationTask(request)
|
254
|
+
body = send_request('StopMediaQualityRestorationTask', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = StopMediaQualityRestorationTaskResponse.new
|
258
|
+
model.deserialize(response['Response'])
|
259
|
+
model
|
260
|
+
else
|
261
|
+
code = response['Response']['Error']['Code']
|
262
|
+
message = response['Response']['Error']['Message']
|
263
|
+
reqid = response['Response']['RequestId']
|
264
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
265
|
+
end
|
266
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
267
|
+
raise e
|
268
|
+
rescue StandardError => e
|
269
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
270
|
+
end
|
271
|
+
|
272
|
+
|
273
|
+
end
|
274
|
+
end
|
275
|
+
end
|
276
|
+
end
|