tencentcloud-sdk-mps 3.0.1115 → 3.0.1119
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 +15 -2
- 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: dbec9b0b24367cd814cabf8e257ba588c2993768
|
4
|
+
data.tar.gz: 67ab0810fa39b6ecaba14edae5a056b313364af4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 42ab422921ec7a886b6c8fd9682e2bcf03b6fe952763fb86c694723fd95c8de205fa389d5597b873cdb2c962da318aeb8ecec8e0b06a81fddcd41081938d93a6
|
7
|
+
data.tar.gz: 87976ccccff94055041d5dc4c215e9e313d6e6c545d1d93d6559e8e7e5c1491cef30bfef8184d01f9d2d22d0437d9450931e63814b6f49aa22ddd5fe32c60cf4
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1119
|
data/lib/v20190612/models.rb
CHANGED
@@ -15881,17 +15881,22 @@ module TencentCloud
|
|
15881
15881
|
class LiveStreamAiAnalysisResultItem < TencentCloud::Common::AbstractModel
|
15882
15882
|
# @param Type: 结果的类型,取值范围:
|
15883
15883
|
# <li>SegmentRecognition:拆条。</li>
|
15884
|
+
# <li>Highlight :集锦。</li>
|
15884
15885
|
# @type Type: String
|
15885
15886
|
# @param SegmentResultSet: 拆条结果,当 Type 为
|
15886
15887
|
# SegmentRecognition 时有效。
|
15887
15888
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
15888
15889
|
# @type SegmentResultSet: Array
|
15890
|
+
# @param HighlightResultSet: 集锦结果,当Type 为 Highlight 时有效。
|
15891
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15892
|
+
# @type HighlightResultSet: Array
|
15889
15893
|
|
15890
|
-
attr_accessor :Type, :SegmentResultSet
|
15894
|
+
attr_accessor :Type, :SegmentResultSet, :HighlightResultSet
|
15891
15895
|
|
15892
|
-
def initialize(type=nil, segmentresultset=nil)
|
15896
|
+
def initialize(type=nil, segmentresultset=nil, highlightresultset=nil)
|
15893
15897
|
@Type = type
|
15894
15898
|
@SegmentResultSet = segmentresultset
|
15899
|
+
@HighlightResultSet = highlightresultset
|
15895
15900
|
end
|
15896
15901
|
|
15897
15902
|
def deserialize(params)
|
@@ -15904,6 +15909,14 @@ module TencentCloud
|
|
15904
15909
|
@SegmentResultSet << segmentrecognitionitem_tmp
|
15905
15910
|
end
|
15906
15911
|
end
|
15912
|
+
unless params['HighlightResultSet'].nil?
|
15913
|
+
@HighlightResultSet = []
|
15914
|
+
params['HighlightResultSet'].each do |i|
|
15915
|
+
mediaaianalysishighlightitem_tmp = MediaAiAnalysisHighlightItem.new
|
15916
|
+
mediaaianalysishighlightitem_tmp.deserialize(i)
|
15917
|
+
@HighlightResultSet << mediaaianalysishighlightitem_tmp
|
15918
|
+
end
|
15919
|
+
end
|
15907
15920
|
end
|
15908
15921
|
end
|
15909
15922
|
|
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.1119
|
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-08-
|
11
|
+
date: 2025-08-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|