tencentcloud-sdk-vod 1.0.351 → 1.0.354
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 +42 -19
- 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: 789550a634c9b701da293504a244e196f3b2d7c3
|
4
|
+
data.tar.gz: 5c7fd595216b16e2fdc026f8f0fe459b2c7a4185
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16b4a6feeb3a3ea260e9412ac8a4ddeebe9d7e61ccdb52bf38c5c3664bc1a542decfae458b5b4e4156c1e4eb76227f01f2cad7b096a7a471dd8ccf66426418da
|
7
|
+
data.tar.gz: 6e53d5a34ba126b8a163ea96d4be9407c869c709d53cd49592957dcb10acca4ac689c8f3ed97f7bafee7d8571877e0f5b685866faa37eb1f5ec8f45da389884e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.354
|
data/lib/v20180717/models.rb
CHANGED
@@ -8518,6 +8518,8 @@ module TencentCloud
|
|
8518
8518
|
# @type StartTime: String
|
8519
8519
|
# @param EndTime: 结束日期,需大于等于起始日期。使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#52)。
|
8520
8520
|
# @type EndTime: String
|
8521
|
+
# @param SubAppId: <b>点播 [子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
8522
|
+
# @type SubAppId: Integer
|
8521
8523
|
# @param Type: 查询视频处理任务类型,目前支持的任务类型包括:
|
8522
8524
|
# <li> Transcoding: 普通转码</li>
|
8523
8525
|
# <li> Transcoding-TESHD: 极速高清转码</li>
|
@@ -8525,26 +8527,26 @@ module TencentCloud
|
|
8525
8527
|
# <li> Editing-TESHD: 极速高清视频编辑</li>
|
8526
8528
|
# <li> AdaptiveBitrateStreaming: 自适应码流</li>
|
8527
8529
|
# <li> ContentAudit: 内容审核</li>
|
8530
|
+
# <li> ContentRecognition: 内容识别</li>
|
8528
8531
|
# <li> RemoveWatermark: 去除水印</li>
|
8532
|
+
# <li> ExtractTraceWatermark: 提取水印</li>
|
8529
8533
|
# <li>Transcode: 转码,包含普通转码、极速高清和视频编辑(不推荐使用)</li>
|
8530
8534
|
# @type Type: String
|
8531
|
-
# @param SubAppId: 点播 [子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
8532
|
-
# @type SubAppId: Integer
|
8533
8535
|
|
8534
|
-
attr_accessor :StartTime, :EndTime, :
|
8536
|
+
attr_accessor :StartTime, :EndTime, :SubAppId, :Type
|
8535
8537
|
|
8536
|
-
def initialize(starttime=nil, endtime=nil,
|
8538
|
+
def initialize(starttime=nil, endtime=nil, subappid=nil, type=nil)
|
8537
8539
|
@StartTime = starttime
|
8538
8540
|
@EndTime = endtime
|
8539
|
-
@Type = type
|
8540
8541
|
@SubAppId = subappid
|
8542
|
+
@Type = type
|
8541
8543
|
end
|
8542
8544
|
|
8543
8545
|
def deserialize(params)
|
8544
8546
|
@StartTime = params['StartTime']
|
8545
8547
|
@EndTime = params['EndTime']
|
8546
|
-
@Type = params['Type']
|
8547
8548
|
@SubAppId = params['SubAppId']
|
8549
|
+
@Type = params['Type']
|
8548
8550
|
end
|
8549
8551
|
end
|
8550
8552
|
|
@@ -11298,14 +11300,20 @@ module TencentCloud
|
|
11298
11300
|
# <li>repeat_last_frame:水印播放完后,停留在最后一帧;</li>
|
11299
11301
|
# <li>repeat:水印循环播放,直到视频结束(默认值)。</li>
|
11300
11302
|
# @type RepeatType: String
|
11303
|
+
# @param Transparency: 图片透明度,取值范围:[0, 100]
|
11304
|
+
# <li>0:完全不透明</li>
|
11305
|
+
# <li>100:完全透明</li>
|
11306
|
+
# 默认值:0。
|
11307
|
+
# @type Transparency: Integer
|
11301
11308
|
|
11302
|
-
attr_accessor :ImageContent, :Width, :Height, :RepeatType
|
11309
|
+
attr_accessor :ImageContent, :Width, :Height, :RepeatType, :Transparency
|
11303
11310
|
|
11304
|
-
def initialize(imagecontent=nil, width=nil, height=nil, repeattype=nil)
|
11311
|
+
def initialize(imagecontent=nil, width=nil, height=nil, repeattype=nil, transparency=nil)
|
11305
11312
|
@ImageContent = imagecontent
|
11306
11313
|
@Width = width
|
11307
11314
|
@Height = height
|
11308
11315
|
@RepeatType = repeattype
|
11316
|
+
@Transparency = transparency
|
11309
11317
|
end
|
11310
11318
|
|
11311
11319
|
def deserialize(params)
|
@@ -11313,6 +11321,7 @@ module TencentCloud
|
|
11313
11321
|
@Width = params['Width']
|
11314
11322
|
@Height = params['Height']
|
11315
11323
|
@RepeatType = params['RepeatType']
|
11324
|
+
@Transparency = params['Transparency']
|
11316
11325
|
end
|
11317
11326
|
end
|
11318
11327
|
|
@@ -11333,14 +11342,19 @@ module TencentCloud
|
|
11333
11342
|
# <li>repeat_last_frame:水印播放完后,停留在最后一帧;</li>
|
11334
11343
|
# <li>repeat:水印循环播放,直到视频结束。</li>
|
11335
11344
|
# @type RepeatType: String
|
11345
|
+
# @param Transparency: 图片透明度,取值范围:[0, 100]
|
11346
|
+
# <li>0:完全不透明</li>
|
11347
|
+
# <li>100:完全透明。</li>
|
11348
|
+
# @type Transparency: Integer
|
11336
11349
|
|
11337
|
-
attr_accessor :ImageContent, :Width, :Height, :RepeatType
|
11350
|
+
attr_accessor :ImageContent, :Width, :Height, :RepeatType, :Transparency
|
11338
11351
|
|
11339
|
-
def initialize(imagecontent=nil, width=nil, height=nil, repeattype=nil)
|
11352
|
+
def initialize(imagecontent=nil, width=nil, height=nil, repeattype=nil, transparency=nil)
|
11340
11353
|
@ImageContent = imagecontent
|
11341
11354
|
@Width = width
|
11342
11355
|
@Height = height
|
11343
11356
|
@RepeatType = repeattype
|
11357
|
+
@Transparency = transparency
|
11344
11358
|
end
|
11345
11359
|
|
11346
11360
|
def deserialize(params)
|
@@ -11348,6 +11362,7 @@ module TencentCloud
|
|
11348
11362
|
@Width = params['Width']
|
11349
11363
|
@Height = params['Height']
|
11350
11364
|
@RepeatType = params['RepeatType']
|
11365
|
+
@Transparency = params['Transparency']
|
11351
11366
|
end
|
11352
11367
|
end
|
11353
11368
|
|
@@ -11369,14 +11384,19 @@ module TencentCloud
|
|
11369
11384
|
# <li>repeat_last_frame:水印播放完后,停留在最后一帧;</li>
|
11370
11385
|
# <li>repeat:水印循环播放,直到视频结束。</li>
|
11371
11386
|
# @type RepeatType: String
|
11387
|
+
# @param Transparency: 图片透明度,取值范围:[0, 100]
|
11388
|
+
# <li>0:完全不透明</li>
|
11389
|
+
# <li>100:完全透明。</li>
|
11390
|
+
# @type Transparency: Integer
|
11372
11391
|
|
11373
|
-
attr_accessor :ImageUrl, :Width, :Height, :RepeatType
|
11392
|
+
attr_accessor :ImageUrl, :Width, :Height, :RepeatType, :Transparency
|
11374
11393
|
|
11375
|
-
def initialize(imageurl=nil, width=nil, height=nil, repeattype=nil)
|
11394
|
+
def initialize(imageurl=nil, width=nil, height=nil, repeattype=nil, transparency=nil)
|
11376
11395
|
@ImageUrl = imageurl
|
11377
11396
|
@Width = width
|
11378
11397
|
@Height = height
|
11379
11398
|
@RepeatType = repeattype
|
11399
|
+
@Transparency = transparency
|
11380
11400
|
end
|
11381
11401
|
|
11382
11402
|
def deserialize(params)
|
@@ -11384,6 +11404,7 @@ module TencentCloud
|
|
11384
11404
|
@Width = params['Width']
|
11385
11405
|
@Height = params['Height']
|
11386
11406
|
@RepeatType = params['RepeatType']
|
11407
|
+
@Transparency = params['Transparency']
|
11387
11408
|
end
|
11388
11409
|
end
|
11389
11410
|
|
@@ -18911,8 +18932,10 @@ module TencentCloud
|
|
18911
18932
|
# <li> Editing: 视频编辑</li>
|
18912
18933
|
# <li> Editing-TESHD: 极速高清视频编辑</li>
|
18913
18934
|
# <li> AdaptiveBitrateStreaming: 自适应码流</li>
|
18914
|
-
# <li> ContentAudit:
|
18935
|
+
# <li> ContentAudit: 内容审核</li>
|
18936
|
+
# <li> ContentRecognition: 内容识别</li>
|
18915
18937
|
# <li> RemoveWatermark: 去水印</li>
|
18938
|
+
# <li> ExtractTraceWatermark: 提取水印</li>
|
18916
18939
|
# <li>Transcode: 转码,包含普通转码、极速高清和视频编辑(不推荐使用)</li>
|
18917
18940
|
# @type TaskType: String
|
18918
18941
|
# @param Summary: 任务数统计数据概览,用量单位为秒。
|
@@ -18963,12 +18986,12 @@ module TencentCloud
|
|
18963
18986
|
# <li>Edit.TESHD-10.H265.2K: H.265编码方式2K极速高清视频编辑</li>
|
18964
18987
|
# <li>Edit.TESHD-10.H265.4K: H.265编码方式4K极速高清视频编辑</li>
|
18965
18988
|
# 去水印规格:
|
18966
|
-
# <li>480P:
|
18967
|
-
# <li>720P:
|
18968
|
-
# <li>1080P:
|
18969
|
-
# <li>2K:
|
18970
|
-
# <li>4K:
|
18971
|
-
# <li>8K:
|
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>
|
18972
18995
|
# @type Details: Array
|
18973
18996
|
|
18974
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.
|
4
|
+
version: 1.0.354
|
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-
|
11
|
+
date: 2022-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|