tencentcloud-sdk-mps 3.0.1177 → 3.0.1178
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 +22 -6
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6316d4b578a084b8c266cb8bd4e513d436076932
|
|
4
|
+
data.tar.gz: 7bf3fada2a79e0738d9ebab9249aff94f38b8ac4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e36aca2dfb13de788173cfa29dc5754bec0615f369b176a0c763ce561a497f02c4b56e59fc014539bdcf7cc1d11973f0deb42e5f208da2ab92a77d011a241e58
|
|
7
|
+
data.tar.gz: 3f3348ebbaccd4bdbde3c071262cdaeb4569e5442bb53e7903174928423061840dfd2520fcaaa7b714d84595bb4737de9127f46d460b9fe27a935a6ac5b54cee
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1178
|
data/lib/v20190612/models.rb
CHANGED
|
@@ -7221,8 +7221,9 @@ module TencentCloud
|
|
|
7221
7221
|
# 注意:
|
|
7222
7222
|
# 此值只是区分模板类型,任务使用RemoveAudio和RemoveVideo的值
|
|
7223
7223
|
# @type PureAudio: Integer
|
|
7224
|
-
# @param SegmentType: 分片类型,可选值: <li>ts-segment:HLS+TS 切片</li> <li>ts-byterange:HLS+TS byte range</li> <li>mp4-segment:HLS+MP4 切片</li> <li>mp4-byterange:HLS+MP4 byte range</li> <li>ts-packed-audio:TS+Packed Audio</li> <li>mp4-packed-audio:MP4+Packed Audio</li> 默认值:ts-segment
|
|
7225
|
-
|
|
7224
|
+
# @param SegmentType: 分片类型,可选值: <li>ts-segment:HLS+TS 切片</li> <li>ts-byterange:HLS+TS byte range</li> <li>mp4-segment:HLS+MP4 切片</li> <li>mp4-byterange:HLS/DASH+MP4 byte range</li> <li>ts-packed-audio:TS+Packed Audio</li> <li>mp4-packed-audio:MP4+Packed Audio</li> 默认值:ts-segment
|
|
7225
|
+
|
|
7226
|
+
# 注:自适应码流的分片格式以此字段为准。DASH格式下SegmentType只能为mp4-byterange。
|
|
7226
7227
|
# @type SegmentType: String
|
|
7227
7228
|
|
|
7228
7229
|
attr_accessor :Format, :StreamInfos, :Name, :DisableHigherVideoBitrate, :DisableHigherVideoResolution, :Comment, :PureAudio, :SegmentType
|
|
@@ -18619,16 +18620,25 @@ module TencentCloud
|
|
|
18619
18620
|
# @param MindMapUrl: 摘要思维导图地址
|
|
18620
18621
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
18621
18622
|
# @type MindMapUrl: String
|
|
18623
|
+
# @param MindMapPath: 摘要思维导图路径。
|
|
18624
|
+
# @type MindMapPath: String
|
|
18625
|
+
# @param SubtitlePath: 视频字幕文件路径。
|
|
18626
|
+
# @type SubtitlePath: String
|
|
18627
|
+
# @param OutputStorage: 摘要文件存储位置。
|
|
18628
|
+
# @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
|
|
18622
18629
|
|
|
18623
|
-
attr_accessor :Description, :Confidence, :Title, :Keywords, :Paragraphs, :MindMapUrl
|
|
18630
|
+
attr_accessor :Description, :Confidence, :Title, :Keywords, :Paragraphs, :MindMapUrl, :MindMapPath, :SubtitlePath, :OutputStorage
|
|
18624
18631
|
|
|
18625
|
-
def initialize(description=nil, confidence=nil, title=nil, keywords=nil, paragraphs=nil, mindmapurl=nil)
|
|
18632
|
+
def initialize(description=nil, confidence=nil, title=nil, keywords=nil, paragraphs=nil, mindmapurl=nil, mindmappath=nil, subtitlepath=nil, outputstorage=nil)
|
|
18626
18633
|
@Description = description
|
|
18627
18634
|
@Confidence = confidence
|
|
18628
18635
|
@Title = title
|
|
18629
18636
|
@Keywords = keywords
|
|
18630
18637
|
@Paragraphs = paragraphs
|
|
18631
18638
|
@MindMapUrl = mindmapurl
|
|
18639
|
+
@MindMapPath = mindmappath
|
|
18640
|
+
@SubtitlePath = subtitlepath
|
|
18641
|
+
@OutputStorage = outputstorage
|
|
18632
18642
|
end
|
|
18633
18643
|
|
|
18634
18644
|
def deserialize(params)
|
|
@@ -18645,6 +18655,12 @@ module TencentCloud
|
|
|
18645
18655
|
end
|
|
18646
18656
|
end
|
|
18647
18657
|
@MindMapUrl = params['MindMapUrl']
|
|
18658
|
+
@MindMapPath = params['MindMapPath']
|
|
18659
|
+
@SubtitlePath = params['SubtitlePath']
|
|
18660
|
+
unless params['OutputStorage'].nil?
|
|
18661
|
+
@OutputStorage = TaskOutputStorage.new
|
|
18662
|
+
@OutputStorage.deserialize(params['OutputStorage'])
|
|
18663
|
+
end
|
|
18648
18664
|
end
|
|
18649
18665
|
end
|
|
18650
18666
|
|
|
@@ -20143,8 +20159,8 @@ module TencentCloud
|
|
|
20143
20159
|
# 注意:
|
|
20144
20160
|
# 此值只是区分模板类型,任务使用RemoveAudio和RemoveVideo的值
|
|
20145
20161
|
# @type PureAudio: Integer
|
|
20146
|
-
# @param SegmentType:
|
|
20147
|
-
# 注:自适应码流的hls
|
|
20162
|
+
# @param SegmentType: 分片类型,可选值: <li>ts-segment:HLS+TS 切片</li> <li>ts-byterange:HLS+TS byte range</li> <li>mp4-segment:HLS+MP4 切片</li> <li>mp4-byterange:HLS/DASH+MP4 byte range</li> <li>ts-packed-audio:TS+Packed Audio</li> <li>mp4-packed-audio:MP4+Packed Audio</li> 默认值:ts-segment
|
|
20163
|
+
# 注:自适应码流的hls分片格式已此字段为准。DASH格式下SegmentType只能为mp4-byterange。
|
|
20148
20164
|
# @type SegmentType: String
|
|
20149
20165
|
|
|
20150
20166
|
attr_accessor :Definition, :Name, :Format, :DisableHigherVideoBitrate, :DisableHigherVideoResolution, :StreamInfos, :Comment, :PureAudio, :SegmentType
|
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: 3.0.
|
|
4
|
+
version: 3.0.1178
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-12-
|
|
11
|
+
date: 2025-12-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/tencentcloud-sdk-mps.rb
|
|
37
|
-
- lib/v20190612/client.rb
|
|
38
36
|
- lib/v20190612/models.rb
|
|
37
|
+
- lib/v20190612/client.rb
|
|
38
|
+
- lib/tencentcloud-sdk-mps.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|