tencentcloud-sdk-vod 3.0.658 → 3.0.660
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/v20180717/client.rb +1 -1
- data/lib/v20180717/models.rb +140 -18
- 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: f0f1ac3ee57917f0370c846752897a210713cf5c
|
4
|
+
data.tar.gz: 35048afbfa142eecd209e1480f6d0a21ff2ca00c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4cafc5492bb233a9136f4aaa00c98d93a774338c2478b1daa261497033ac94e7e2a80386837f70bc5c67b7b1b1da3a7c01aa8e811654ac8417a7d3530b11f73f
|
7
|
+
data.tar.gz: eb987efd5cf7c9cedc687a8528eb7f7b01d851d0cb2cbad51f9924b27bfba8e652e7967f3f68a3b8bd2480c7dfd8c7720a329aa6210105c2244caadb5daaecf5
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.660
|
data/lib/v20180717/client.rb
CHANGED
@@ -3788,7 +3788,7 @@ module TencentCloud
|
|
3788
3788
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3789
3789
|
end
|
3790
3790
|
|
3791
|
-
#
|
3791
|
+
# 发起音画质重生
|
3792
3792
|
|
3793
3793
|
# @param request: Request instance for RebuildMedia.
|
3794
3794
|
# @type request: :class:`Tencentcloud::vod::V20180717::RebuildMediaRequest`
|
data/lib/v20180717/models.rb
CHANGED
@@ -1978,12 +1978,18 @@ module TencentCloud
|
|
1978
1978
|
# @type Name: String
|
1979
1979
|
# @param SegmentSet: 物体出现的片段列表。
|
1980
1980
|
# @type SegmentSet: Array
|
1981
|
+
# @param RecognitionSegmentSet: 物体出现的片段列表。
|
1982
|
+
# @type RecognitionSegmentSet: Array
|
1981
1983
|
|
1982
|
-
attr_accessor :Name, :SegmentSet
|
1984
|
+
attr_accessor :Name, :SegmentSet, :RecognitionSegmentSet
|
1985
|
+
extend Gem::Deprecate
|
1986
|
+
deprecate :SegmentSet, :none, 2023, 9
|
1987
|
+
deprecate :SegmentSet=, :none, 2023, 9
|
1983
1988
|
|
1984
|
-
def initialize(name=nil, segmentset=nil)
|
1989
|
+
def initialize(name=nil, segmentset=nil, recognitionsegmentset=nil)
|
1985
1990
|
@Name = name
|
1986
1991
|
@SegmentSet = segmentset
|
1992
|
+
@RecognitionSegmentSet = recognitionsegmentset
|
1987
1993
|
end
|
1988
1994
|
|
1989
1995
|
def deserialize(params)
|
@@ -1996,6 +2002,14 @@ module TencentCloud
|
|
1996
2002
|
@SegmentSet << airecognitiontaskobjectseqmentitem_tmp
|
1997
2003
|
end
|
1998
2004
|
end
|
2005
|
+
unless params['RecognitionSegmentSet'].nil?
|
2006
|
+
@RecognitionSegmentSet = []
|
2007
|
+
params['RecognitionSegmentSet'].each do |i|
|
2008
|
+
airecognitiontaskobjectsegmentitem_tmp = AiRecognitionTaskObjectSegmentItem.new
|
2009
|
+
airecognitiontaskobjectsegmentitem_tmp.deserialize(i)
|
2010
|
+
@RecognitionSegmentSet << airecognitiontaskobjectsegmentitem_tmp
|
2011
|
+
end
|
2012
|
+
end
|
1999
2013
|
end
|
2000
2014
|
end
|
2001
2015
|
|
@@ -2031,6 +2045,34 @@ module TencentCloud
|
|
2031
2045
|
end
|
2032
2046
|
end
|
2033
2047
|
|
2048
|
+
# 物体识别结果片段。
|
2049
|
+
class AiRecognitionTaskObjectSegmentItem < TencentCloud::Common::AbstractModel
|
2050
|
+
# @param StartTimeOffset: 识别片段起始的偏移时间,单位:秒。
|
2051
|
+
# @type StartTimeOffset: Float
|
2052
|
+
# @param EndTimeOffset: 识别片段终止的偏移时间,单位:秒。
|
2053
|
+
# @type EndTimeOffset: Float
|
2054
|
+
# @param Confidence: 识别片段置信度。取值:0~100。
|
2055
|
+
# @type Confidence: Float
|
2056
|
+
# @param AreaCoordSet: 识别结果的区域坐标。数组包含 4 个元素 [x1,y1,x2,y2],依次表示区域左上点、右下点的横纵坐标。
|
2057
|
+
# @type AreaCoordSet: Array
|
2058
|
+
|
2059
|
+
attr_accessor :StartTimeOffset, :EndTimeOffset, :Confidence, :AreaCoordSet
|
2060
|
+
|
2061
|
+
def initialize(starttimeoffset=nil, endtimeoffset=nil, confidence=nil, areacoordset=nil)
|
2062
|
+
@StartTimeOffset = starttimeoffset
|
2063
|
+
@EndTimeOffset = endtimeoffset
|
2064
|
+
@Confidence = confidence
|
2065
|
+
@AreaCoordSet = areacoordset
|
2066
|
+
end
|
2067
|
+
|
2068
|
+
def deserialize(params)
|
2069
|
+
@StartTimeOffset = params['StartTimeOffset']
|
2070
|
+
@EndTimeOffset = params['EndTimeOffset']
|
2071
|
+
@Confidence = params['Confidence']
|
2072
|
+
@AreaCoordSet = params['AreaCoordSet']
|
2073
|
+
end
|
2074
|
+
end
|
2075
|
+
|
2034
2076
|
# 物体识别结果片段。
|
2035
2077
|
class AiRecognitionTaskObjectSeqmentItem < TencentCloud::Common::AbstractModel
|
2036
2078
|
# @param StartTimeOffset: 识别片段起始的偏移时间,单位:秒。
|
@@ -5655,7 +5697,7 @@ module TencentCloud
|
|
5655
5697
|
# <li>SimpleAES</li>
|
5656
5698
|
# <li>Widevine</li>
|
5657
5699
|
# <li>FairPlay</li>
|
5658
|
-
#
|
5700
|
+
# 默认值为空字符串,如果取值为空字符串,代表不对视频做 DRM 保护。
|
5659
5701
|
# @type DrmType: String
|
5660
5702
|
# @param DrmKeyProvider: DRM 的密钥提供商,取值范围:
|
5661
5703
|
# <li>SDMC:华曦达;</li>
|
@@ -6257,8 +6299,10 @@ module TencentCloud
|
|
6257
6299
|
# <li>当 SampleType 为 Time 时,指定采样间隔的时间,单位为秒。</li>
|
6258
6300
|
# @type SampleInterval: Integer
|
6259
6301
|
# @param RowCount: 雪碧图中小图的行数。
|
6302
|
+
# 注意:小图的行数会影响最终大图的高度,大图的高度最大为15000像素,其中大图的高度为小图行数与小图高度的乘积。
|
6260
6303
|
# @type RowCount: Integer
|
6261
6304
|
# @param ColumnCount: 雪碧图中小图的列数。
|
6305
|
+
# 注意:小图的列数会影响最终大图的宽度,大图的宽度最大为15000像素,其中大图的宽度为小图列数与小图宽度的乘积。
|
6262
6306
|
# @type ColumnCount: Integer
|
6263
6307
|
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
6264
6308
|
# @type SubAppId: Integer
|
@@ -6277,6 +6321,7 @@ module TencentCloud
|
|
6277
6321
|
# <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
|
6278
6322
|
# <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
|
6279
6323
|
# 默认值:0。
|
6324
|
+
# 注意:小图的宽度会影响最终大图的宽度,大图的宽度最大为15000像素,其中大图的宽度为小图列数与小图宽度的乘积。
|
6280
6325
|
# @type Width: Integer
|
6281
6326
|
# @param Height: 雪碧图中小图的高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
|
6282
6327
|
# <li>当 Width、Height 均为 0,则分辨率同源;</li>
|
@@ -6284,6 +6329,7 @@ module TencentCloud
|
|
6284
6329
|
# <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
|
6285
6330
|
# <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
|
6286
6331
|
# 默认值:0。
|
6332
|
+
# 注意:小图的高度会影响最终大图的高度,大图的高度最大为15000像素,其中大图的高度为小图行数与小图高度的乘积。
|
6287
6333
|
# @type Height: Integer
|
6288
6334
|
# @param ResolutionAdaptive: 分辨率自适应,可选值:
|
6289
6335
|
# <li>open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;</li>
|
@@ -7291,27 +7337,27 @@ module TencentCloud
|
|
7291
7337
|
class CreateVodDomainRequest < TencentCloud::Common::AbstractModel
|
7292
7338
|
# @param Domain: 需要接入点播的加速域名。注意:不支持填写泛域名。
|
7293
7339
|
# @type Domain: String
|
7294
|
-
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
7295
|
-
# @type SubAppId: Integer
|
7296
7340
|
# @param AccelerateArea: 需要开启 CDN 加速的区域:
|
7297
7341
|
# <li>Chinese Mainland:中国境内(不包含港澳台)。</li>
|
7298
7342
|
# <li>Outside Chinese Mainland: 中国境外。</li>
|
7299
7343
|
# <li>Global: 全球范围。</li>
|
7300
7344
|
# 如果没有设置 AccelerateArea, 点播会根据用户在腾讯云设置的地域信息自动开通中国境内或者中国境外的 CDN 加速。开启中国境内加速的域名,需要先[备案域名](/document/product/243/18905)。
|
7301
7345
|
# @type AccelerateArea: String
|
7346
|
+
# @param SubAppId: <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
7347
|
+
# @type SubAppId: Integer
|
7302
7348
|
|
7303
|
-
attr_accessor :Domain, :
|
7349
|
+
attr_accessor :Domain, :AccelerateArea, :SubAppId
|
7304
7350
|
|
7305
|
-
def initialize(domain=nil,
|
7351
|
+
def initialize(domain=nil, acceleratearea=nil, subappid=nil)
|
7306
7352
|
@Domain = domain
|
7307
|
-
@SubAppId = subappid
|
7308
7353
|
@AccelerateArea = acceleratearea
|
7354
|
+
@SubAppId = subappid
|
7309
7355
|
end
|
7310
7356
|
|
7311
7357
|
def deserialize(params)
|
7312
7358
|
@Domain = params['Domain']
|
7313
|
-
@SubAppId = params['SubAppId']
|
7314
7359
|
@AccelerateArea = params['AccelerateArea']
|
7360
|
+
@SubAppId = params['SubAppId']
|
7315
7361
|
end
|
7316
7362
|
end
|
7317
7363
|
|
@@ -16493,12 +16539,18 @@ module TencentCloud
|
|
16493
16539
|
# @type Duration: Float
|
16494
16540
|
# @param Transitions: 转场操作列表。图像转场操作和音频转场操作各自最多支持一个。
|
16495
16541
|
# @type Transitions: Array
|
16542
|
+
# @param MediaTransitions: 转场操作列表。图像转场操作和音频转场操作各自最多支持一个。
|
16543
|
+
# @type MediaTransitions: Array
|
16496
16544
|
|
16497
|
-
attr_accessor :Duration, :Transitions
|
16545
|
+
attr_accessor :Duration, :Transitions, :MediaTransitions
|
16546
|
+
extend Gem::Deprecate
|
16547
|
+
deprecate :Transitions, :none, 2023, 9
|
16548
|
+
deprecate :Transitions=, :none, 2023, 9
|
16498
16549
|
|
16499
|
-
def initialize(duration=nil, transitions=nil)
|
16550
|
+
def initialize(duration=nil, transitions=nil, mediatransitions=nil)
|
16500
16551
|
@Duration = duration
|
16501
16552
|
@Transitions = transitions
|
16553
|
+
@MediaTransitions = mediatransitions
|
16502
16554
|
end
|
16503
16555
|
|
16504
16556
|
def deserialize(params)
|
@@ -16511,6 +16563,14 @@ module TencentCloud
|
|
16511
16563
|
@Transitions << transitionopertion_tmp
|
16512
16564
|
end
|
16513
16565
|
end
|
16566
|
+
unless params['MediaTransitions'].nil?
|
16567
|
+
@MediaTransitions = []
|
16568
|
+
params['MediaTransitions'].each do |i|
|
16569
|
+
transitionoperation_tmp = TransitionOperation.new
|
16570
|
+
transitionoperation_tmp.deserialize(i)
|
16571
|
+
@MediaTransitions << transitionoperation_tmp
|
16572
|
+
end
|
16573
|
+
end
|
16514
16574
|
end
|
16515
16575
|
end
|
16516
16576
|
|
@@ -21500,7 +21560,7 @@ module TencentCloud
|
|
21500
21560
|
|
21501
21561
|
# RebuildMedia返回参数结构体
|
21502
21562
|
class RebuildMediaResponse < TencentCloud::Common::AbstractModel
|
21503
|
-
# @param TaskId:
|
21563
|
+
# @param TaskId: 音画质重生的任务 ID,可以通过该 ID 查询音画质重生任务的状态。
|
21504
21564
|
# @type TaskId: String
|
21505
21565
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
21506
21566
|
# @type RequestId: String
|
@@ -22702,6 +22762,8 @@ module TencentCloud
|
|
22702
22762
|
class RestoreMediaRequest < TencentCloud::Common::AbstractModel
|
22703
22763
|
# @param FileIds: 媒体文件唯一标识列表,最大长度:100。
|
22704
22764
|
# @type FileIds: Array
|
22765
|
+
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
22766
|
+
# @type SubAppId: Integer
|
22705
22767
|
# @param RestoreDay: 解冻出的临时媒体文件的可访问持续时长,必须大于0,单位为“天”。
|
22706
22768
|
# @type RestoreDay: Integer
|
22707
22769
|
# @param RestoreTier: 解冻模式。当媒体文件当前的存储类型为归档存储时,有以下取值:
|
@@ -22712,23 +22774,21 @@ module TencentCloud
|
|
22712
22774
|
# <li>标准模式:Standard,解冻任务在24小时后完成。</li>
|
22713
22775
|
# <li>批量模式:Bulk,解冻任务在48小时后完成。</li>
|
22714
22776
|
# @type RestoreTier: String
|
22715
|
-
# @param SubAppId: 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
22716
|
-
# @type SubAppId: Integer
|
22717
22777
|
|
22718
|
-
attr_accessor :FileIds, :
|
22778
|
+
attr_accessor :FileIds, :SubAppId, :RestoreDay, :RestoreTier
|
22719
22779
|
|
22720
|
-
def initialize(fileids=nil,
|
22780
|
+
def initialize(fileids=nil, subappid=nil, restoreday=nil, restoretier=nil)
|
22721
22781
|
@FileIds = fileids
|
22782
|
+
@SubAppId = subappid
|
22722
22783
|
@RestoreDay = restoreday
|
22723
22784
|
@RestoreTier = restoretier
|
22724
|
-
@SubAppId = subappid
|
22725
22785
|
end
|
22726
22786
|
|
22727
22787
|
def deserialize(params)
|
22728
22788
|
@FileIds = params['FileIds']
|
22789
|
+
@SubAppId = params['SubAppId']
|
22729
22790
|
@RestoreDay = params['RestoreDay']
|
22730
22791
|
@RestoreTier = params['RestoreTier']
|
22731
|
-
@SubAppId = params['SubAppId']
|
22732
22792
|
end
|
22733
22793
|
end
|
22734
22794
|
|
@@ -25758,6 +25818,68 @@ module TencentCloud
|
|
25758
25818
|
end
|
25759
25819
|
end
|
25760
25820
|
|
25821
|
+
# 转场操作
|
25822
|
+
class TransitionOperation < TencentCloud::Common::AbstractModel
|
25823
|
+
# @param Type: 转场类型,取值有:
|
25824
|
+
# <ul>
|
25825
|
+
# <li>图像的转场操作,用于两个视频片段图像间的转场处理:
|
25826
|
+
# <ul>
|
25827
|
+
# <li>ImageFadeInFadeOut:图像淡入淡出。 </li>
|
25828
|
+
# <li>BowTieHorizontal:水平蝴蝶结。 </li>
|
25829
|
+
# <li>BowTieVertical:垂直蝴蝶结。 </li>
|
25830
|
+
# <li>ButterflyWaveScrawler:晃动。 </li>
|
25831
|
+
# <li>Cannabisleaf:枫叶。 </li>
|
25832
|
+
# <li>Circle:弧形收放。 </li>
|
25833
|
+
# <li>CircleCrop:圆环聚拢。 </li>
|
25834
|
+
# <li>Circleopen:椭圆聚拢。 </li>
|
25835
|
+
# <li>Crosswarp:横向翘曲。 </li>
|
25836
|
+
# <li>Cube:立方体。 </li>
|
25837
|
+
# <li>DoomScreenTransition:幕布。 </li>
|
25838
|
+
# <li>Doorway:门廊。 </li>
|
25839
|
+
# <li>Dreamy:波浪。 </li>
|
25840
|
+
# <li>DreamyZoom:水平聚拢。 </li>
|
25841
|
+
# <li>FilmBurn:火烧云。 </li>
|
25842
|
+
# <li>GlitchMemories:抖动。 </li>
|
25843
|
+
# <li>Heart:心形。 </li>
|
25844
|
+
# <li>InvertedPageCurl:翻页。 </li>
|
25845
|
+
# <li>Luma:腐蚀。 </li>
|
25846
|
+
# <li>Mosaic:九宫格。 </li>
|
25847
|
+
# <li>Pinwheel:风车。 </li>
|
25848
|
+
# <li>PolarFunction:椭圆扩散。 </li>
|
25849
|
+
# <li>PolkaDotsCurtain:弧形扩散。 </li>
|
25850
|
+
# <li>Radial:雷达扫描 </li>
|
25851
|
+
# <li>RotateScaleFade:上下收放。 </li>
|
25852
|
+
# <li>Squeeze:上下聚拢。 </li>
|
25853
|
+
# <li>Swap:放大切换。 </li>
|
25854
|
+
# <li>Swirl:螺旋。 </li>
|
25855
|
+
# <li>UndulatingBurnOutSwirl:水流蔓延。 </li>
|
25856
|
+
# <li>Windowblinds:百叶窗。 </li>
|
25857
|
+
# <li>WipeDown:向下收起。 </li>
|
25858
|
+
# <li>WipeLeft:向左收起。 </li>
|
25859
|
+
# <li>WipeRight:向右收起。 </li>
|
25860
|
+
# <li>WipeUp:向上收起。 </li>
|
25861
|
+
# <li>ZoomInCircles:水波纹。 </li>
|
25862
|
+
# </ul>
|
25863
|
+
# </li>
|
25864
|
+
# <li>音频的转场操作,用于两个音频片段间的转场处理:
|
25865
|
+
# <ul>
|
25866
|
+
# <li>AudioFadeInFadeOut:声音淡入淡出。 </li>
|
25867
|
+
# </ul>
|
25868
|
+
# </li>
|
25869
|
+
# </ul>
|
25870
|
+
# @type Type: String
|
25871
|
+
|
25872
|
+
attr_accessor :Type
|
25873
|
+
|
25874
|
+
def initialize(type=nil)
|
25875
|
+
@Type = type
|
25876
|
+
end
|
25877
|
+
|
25878
|
+
def deserialize(params)
|
25879
|
+
@Type = params['Type']
|
25880
|
+
end
|
25881
|
+
end
|
25882
|
+
|
25761
25883
|
# 转场操作
|
25762
25884
|
class TransitionOpertion < TencentCloud::Common::AbstractModel
|
25763
25885
|
# @param Type: 转场类型,取值有:
|
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: 3.0.
|
4
|
+
version: 3.0.660
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-09-
|
11
|
+
date: 2023-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|