tencentcloud-sdk-vod 1.0.350 → 1.0.353

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180717/models.rb +48 -21
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1b769b325c4bb7bbde328e940689750b96949deb
4
- data.tar.gz: 468f00286569020671643b58ce9129842b9d2e3e
3
+ metadata.gz: d9ca7447eb09536c14d61ce7252775b626eb6aaf
4
+ data.tar.gz: 1759024412df03adb13fb874b22715b1a2bf9524
5
5
  SHA512:
6
- metadata.gz: e795c6f579b0d93c515737e3a30f91de5b88ed0f0da24babf29cc59b4e98ae0341490848d7ee43cc133d0fb606f027886d7c276d618948debefc9ef45d14f537
7
- data.tar.gz: 0e650461d3fd0235f51943d45e808b0aea9aa03096bc8fbcb78ae699c05ee48f814c2b2f4e391a8257b738f785a4f2966099e46e07be3d286168456730fd7ff8
6
+ metadata.gz: e091da8472f4bb19cb2b8ac023f328ff73546020c50fb4d6bb6a2aa623999a9a4c49959b51f4c5c3a73d9b8a80827f474d3196de0fcfd33e3f323ee83211ccdd
7
+ data.tar.gz: 5474c82f8aa2a3814924e35caea4432bf002e3ab39602342cd7bfb85e0bae927abdeb0e9b434e1c803703d35f608b82736c58a251fca5b2043a21c1971dab605
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.350
1
+ 1.0.353
@@ -1173,16 +1173,19 @@ module TencentCloud
1173
1173
  # @param Output: 语音全文识别任务输出信息。
1174
1174
  # 注意:此字段可能返回 null,表示取不到有效值。
1175
1175
  # @type Output: :class:`Tencentcloud::Vod.v20180717.models.AiRecognitionTaskAsrFullTextResultOutput`
1176
+ # @param Progress: 任务进度,取值范围 [0-100] 。
1177
+ # @type Progress: Integer
1176
1178
 
1177
- attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output
1179
+ attr_accessor :Status, :ErrCodeExt, :ErrCode, :Message, :Input, :Output, :Progress
1178
1180
 
1179
- def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil)
1181
+ def initialize(status=nil, errcodeext=nil, errcode=nil, message=nil, input=nil, output=nil, progress=nil)
1180
1182
  @Status = status
1181
1183
  @ErrCodeExt = errcodeext
1182
1184
  @ErrCode = errcode
1183
1185
  @Message = message
1184
1186
  @Input = input
1185
1187
  @Output = output
1188
+ @Progress = progress
1186
1189
  end
1187
1190
 
1188
1191
  def deserialize(params)
@@ -1198,6 +1201,7 @@ module TencentCloud
1198
1201
  @Output = AiRecognitionTaskAsrFullTextResultOutput.new
1199
1202
  @Output.deserialize(params['Output'])
1200
1203
  end
1204
+ @Progress = params['Progress']
1201
1205
  end
1202
1206
  end
1203
1207
 
@@ -8514,6 +8518,8 @@ module TencentCloud
8514
8518
  # @type StartTime: String
8515
8519
  # @param EndTime: 结束日期,需大于等于起始日期。使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#52)。
8516
8520
  # @type EndTime: String
8521
+ # @param SubAppId: <b>点播 [子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
8522
+ # @type SubAppId: Integer
8517
8523
  # @param Type: 查询视频处理任务类型,目前支持的任务类型包括:
8518
8524
  # <li> Transcoding: 普通转码</li>
8519
8525
  # <li> Transcoding-TESHD: 极速高清转码</li>
@@ -8521,26 +8527,26 @@ module TencentCloud
8521
8527
  # <li> Editing-TESHD: 极速高清视频编辑</li>
8522
8528
  # <li> AdaptiveBitrateStreaming: 自适应码流</li>
8523
8529
  # <li> ContentAudit: 内容审核</li>
8530
+ # <li> ContentRecognition: 内容识别</li>
8524
8531
  # <li> RemoveWatermark: 去除水印</li>
8532
+ # <li> ExtractTraceWatermark: 提取水印</li>
8525
8533
  # <li>Transcode: 转码,包含普通转码、极速高清和视频编辑(不推荐使用)</li>
8526
8534
  # @type Type: String
8527
- # @param SubAppId: 点播 [子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
8528
- # @type SubAppId: Integer
8529
8535
 
8530
- attr_accessor :StartTime, :EndTime, :Type, :SubAppId
8536
+ attr_accessor :StartTime, :EndTime, :SubAppId, :Type
8531
8537
 
8532
- def initialize(starttime=nil, endtime=nil, type=nil, subappid=nil)
8538
+ def initialize(starttime=nil, endtime=nil, subappid=nil, type=nil)
8533
8539
  @StartTime = starttime
8534
8540
  @EndTime = endtime
8535
- @Type = type
8536
8541
  @SubAppId = subappid
8542
+ @Type = type
8537
8543
  end
8538
8544
 
8539
8545
  def deserialize(params)
8540
8546
  @StartTime = params['StartTime']
8541
8547
  @EndTime = params['EndTime']
8542
- @Type = params['Type']
8543
8548
  @SubAppId = params['SubAppId']
8549
+ @Type = params['Type']
8544
8550
  end
8545
8551
  end
8546
8552
 
@@ -11294,14 +11300,20 @@ module TencentCloud
11294
11300
  # <li>repeat_last_frame:水印播放完后,停留在最后一帧;</li>
11295
11301
  # <li>repeat:水印循环播放,直到视频结束(默认值)。</li>
11296
11302
  # @type RepeatType: String
11303
+ # @param Transparency: 图片透明度,取值范围:[0, 100]
11304
+ # <li>0:完全不透明</li>
11305
+ # <li>100:完全透明</li>
11306
+ # 默认值:0。
11307
+ # @type Transparency: Integer
11297
11308
 
11298
- attr_accessor :ImageContent, :Width, :Height, :RepeatType
11309
+ attr_accessor :ImageContent, :Width, :Height, :RepeatType, :Transparency
11299
11310
 
11300
- def initialize(imagecontent=nil, width=nil, height=nil, repeattype=nil)
11311
+ def initialize(imagecontent=nil, width=nil, height=nil, repeattype=nil, transparency=nil)
11301
11312
  @ImageContent = imagecontent
11302
11313
  @Width = width
11303
11314
  @Height = height
11304
11315
  @RepeatType = repeattype
11316
+ @Transparency = transparency
11305
11317
  end
11306
11318
 
11307
11319
  def deserialize(params)
@@ -11309,6 +11321,7 @@ module TencentCloud
11309
11321
  @Width = params['Width']
11310
11322
  @Height = params['Height']
11311
11323
  @RepeatType = params['RepeatType']
11324
+ @Transparency = params['Transparency']
11312
11325
  end
11313
11326
  end
11314
11327
 
@@ -11329,14 +11342,19 @@ module TencentCloud
11329
11342
  # <li>repeat_last_frame:水印播放完后,停留在最后一帧;</li>
11330
11343
  # <li>repeat:水印循环播放,直到视频结束。</li>
11331
11344
  # @type RepeatType: String
11345
+ # @param Transparency: 图片透明度,取值范围:[0, 100]
11346
+ # <li>0:完全不透明</li>
11347
+ # <li>100:完全透明。</li>
11348
+ # @type Transparency: Integer
11332
11349
 
11333
- attr_accessor :ImageContent, :Width, :Height, :RepeatType
11350
+ attr_accessor :ImageContent, :Width, :Height, :RepeatType, :Transparency
11334
11351
 
11335
- def initialize(imagecontent=nil, width=nil, height=nil, repeattype=nil)
11352
+ def initialize(imagecontent=nil, width=nil, height=nil, repeattype=nil, transparency=nil)
11336
11353
  @ImageContent = imagecontent
11337
11354
  @Width = width
11338
11355
  @Height = height
11339
11356
  @RepeatType = repeattype
11357
+ @Transparency = transparency
11340
11358
  end
11341
11359
 
11342
11360
  def deserialize(params)
@@ -11344,6 +11362,7 @@ module TencentCloud
11344
11362
  @Width = params['Width']
11345
11363
  @Height = params['Height']
11346
11364
  @RepeatType = params['RepeatType']
11365
+ @Transparency = params['Transparency']
11347
11366
  end
11348
11367
  end
11349
11368
 
@@ -11365,14 +11384,19 @@ module TencentCloud
11365
11384
  # <li>repeat_last_frame:水印播放完后,停留在最后一帧;</li>
11366
11385
  # <li>repeat:水印循环播放,直到视频结束。</li>
11367
11386
  # @type RepeatType: String
11387
+ # @param Transparency: 图片透明度,取值范围:[0, 100]
11388
+ # <li>0:完全不透明</li>
11389
+ # <li>100:完全透明。</li>
11390
+ # @type Transparency: Integer
11368
11391
 
11369
- attr_accessor :ImageUrl, :Width, :Height, :RepeatType
11392
+ attr_accessor :ImageUrl, :Width, :Height, :RepeatType, :Transparency
11370
11393
 
11371
- def initialize(imageurl=nil, width=nil, height=nil, repeattype=nil)
11394
+ def initialize(imageurl=nil, width=nil, height=nil, repeattype=nil, transparency=nil)
11372
11395
  @ImageUrl = imageurl
11373
11396
  @Width = width
11374
11397
  @Height = height
11375
11398
  @RepeatType = repeattype
11399
+ @Transparency = transparency
11376
11400
  end
11377
11401
 
11378
11402
  def deserialize(params)
@@ -11380,6 +11404,7 @@ module TencentCloud
11380
11404
  @Width = params['Width']
11381
11405
  @Height = params['Height']
11382
11406
  @RepeatType = params['RepeatType']
11407
+ @Transparency = params['Transparency']
11383
11408
  end
11384
11409
  end
11385
11410
 
@@ -18907,8 +18932,10 @@ module TencentCloud
18907
18932
  # <li> Editing: 视频编辑</li>
18908
18933
  # <li> Editing-TESHD: 极速高清视频编辑</li>
18909
18934
  # <li> AdaptiveBitrateStreaming: 自适应码流</li>
18910
- # <li> ContentAudit: 智能识别</li>
18935
+ # <li> ContentAudit: 内容审核</li>
18936
+ # <li> ContentRecognition: 内容识别</li>
18911
18937
  # <li> RemoveWatermark: 去水印</li>
18938
+ # <li> ExtractTraceWatermark: 提取水印</li>
18912
18939
  # <li>Transcode: 转码,包含普通转码、极速高清和视频编辑(不推荐使用)</li>
18913
18940
  # @type TaskType: String
18914
18941
  # @param Summary: 任务数统计数据概览,用量单位为秒。
@@ -18959,12 +18986,12 @@ module TencentCloud
18959
18986
  # <li>Edit.TESHD-10.H265.2K: H.265编码方式2K极速高清视频编辑</li>
18960
18987
  # <li>Edit.TESHD-10.H265.4K: H.265编码方式4K极速高清视频编辑</li>
18961
18988
  # 去水印规格:
18962
- # <li>480P: 分辨率640*480及以下</li>
18963
- # <li>720P: 分辨率1280*720及以下</li>
18964
- # <li>1080P: 分辨率1920*1080及以下</li>
18965
- # <li>2K: 分辨率2560*1440及以下</li>
18966
- # <li>4K: 分辨率3840*2160及以下</li>
18967
- # <li>8K: 分辨率7680*4320及以下</li>
18989
+ # <li>480P: 短边 ≤ 480px</li>
18990
+ # <li>720P: 短边 ≤ 720px</li>
18991
+ # <li>1080P: 短边 ≤ 1080px</li>
18992
+ # <li>2K: 短边 ≤ 1440px</li>
18993
+ # <li>4K: 短边 ≤ 2160px</li>
18994
+ # <li>8K: 短边 ≤ 4320px</li>
18968
18995
  # @type Details: Array
18969
18996
 
18970
18997
  attr_accessor :TaskType, :Summary, :Details
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: 1.0.350
4
+ version: 1.0.353
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-07-06 00:00:00.000000000 Z
11
+ date: 2022-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common