tencentcloud-sdk-mps 3.0.1115 → 3.0.1123
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 +37 -6
- 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: fea34a8e9cb09e0b0f7ff83beaa5aad6094c7878
|
4
|
+
data.tar.gz: 668cb63c2ee9d44fe83c3d42fb59ce73ba166717
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0522a55322d9ad19eb11faaebba967dd32b9bc3e0b3b9a5ef20ea1581930957574c5344cfdbf2fe12872dcea74e744864f00fc7c82085f0466f297ec23e04c4c
|
7
|
+
data.tar.gz: cc157e957314f27094fa87c875fd58f04f88ef622f25753727cb7ccf3485ae5bd898e355faa8168ebcf3f12bc3ec41bec262433af4ac6a45484f837c520d2cd7
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1123
|
data/lib/v20190612/models.rb
CHANGED
@@ -14917,16 +14917,22 @@ module TencentCloud
|
|
14917
14917
|
# @type BeginTime: String
|
14918
14918
|
# @param EndTime: 直播切片对应直播结束时间点,采用 ISO 日期格式。
|
14919
14919
|
# @type EndTime: String
|
14920
|
+
# @param Title: 集锦标题。
|
14921
|
+
# @type Title: String
|
14922
|
+
# @param Summary: 集锦概要。
|
14923
|
+
# @type Summary: String
|
14920
14924
|
|
14921
|
-
attr_accessor :Confidence, :StartTimeOffset, :EndTimeOffset, :SegmentTags, :BeginTime, :EndTime
|
14925
|
+
attr_accessor :Confidence, :StartTimeOffset, :EndTimeOffset, :SegmentTags, :BeginTime, :EndTime, :Title, :Summary
|
14922
14926
|
|
14923
|
-
def initialize(confidence=nil, starttimeoffset=nil, endtimeoffset=nil, segmenttags=nil, begintime=nil, endtime=nil)
|
14927
|
+
def initialize(confidence=nil, starttimeoffset=nil, endtimeoffset=nil, segmenttags=nil, begintime=nil, endtime=nil, title=nil, summary=nil)
|
14924
14928
|
@Confidence = confidence
|
14925
14929
|
@StartTimeOffset = starttimeoffset
|
14926
14930
|
@EndTimeOffset = endtimeoffset
|
14927
14931
|
@SegmentTags = segmenttags
|
14928
14932
|
@BeginTime = begintime
|
14929
14933
|
@EndTime = endtime
|
14934
|
+
@Title = title
|
14935
|
+
@Summary = summary
|
14930
14936
|
end
|
14931
14937
|
|
14932
14938
|
def deserialize(params)
|
@@ -14936,6 +14942,8 @@ module TencentCloud
|
|
14936
14942
|
@SegmentTags = params['SegmentTags']
|
14937
14943
|
@BeginTime = params['BeginTime']
|
14938
14944
|
@EndTime = params['EndTime']
|
14945
|
+
@Title = params['Title']
|
14946
|
+
@Summary = params['Summary']
|
14939
14947
|
end
|
14940
14948
|
end
|
14941
14949
|
|
@@ -15881,17 +15889,22 @@ module TencentCloud
|
|
15881
15889
|
class LiveStreamAiAnalysisResultItem < TencentCloud::Common::AbstractModel
|
15882
15890
|
# @param Type: 结果的类型,取值范围:
|
15883
15891
|
# <li>SegmentRecognition:拆条。</li>
|
15892
|
+
# <li>Highlight :集锦。</li>
|
15884
15893
|
# @type Type: String
|
15885
15894
|
# @param SegmentResultSet: 拆条结果,当 Type 为
|
15886
15895
|
# SegmentRecognition 时有效。
|
15887
15896
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
15888
15897
|
# @type SegmentResultSet: Array
|
15898
|
+
# @param HighlightResultSet: 集锦结果,当Type 为 Highlight 时有效。
|
15899
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15900
|
+
# @type HighlightResultSet: Array
|
15889
15901
|
|
15890
|
-
attr_accessor :Type, :SegmentResultSet
|
15902
|
+
attr_accessor :Type, :SegmentResultSet, :HighlightResultSet
|
15891
15903
|
|
15892
|
-
def initialize(type=nil, segmentresultset=nil)
|
15904
|
+
def initialize(type=nil, segmentresultset=nil, highlightresultset=nil)
|
15893
15905
|
@Type = type
|
15894
15906
|
@SegmentResultSet = segmentresultset
|
15907
|
+
@HighlightResultSet = highlightresultset
|
15895
15908
|
end
|
15896
15909
|
|
15897
15910
|
def deserialize(params)
|
@@ -15904,6 +15917,14 @@ module TencentCloud
|
|
15904
15917
|
@SegmentResultSet << segmentrecognitionitem_tmp
|
15905
15918
|
end
|
15906
15919
|
end
|
15920
|
+
unless params['HighlightResultSet'].nil?
|
15921
|
+
@HighlightResultSet = []
|
15922
|
+
params['HighlightResultSet'].each do |i|
|
15923
|
+
mediaaianalysishighlightitem_tmp = MediaAiAnalysisHighlightItem.new
|
15924
|
+
mediaaianalysishighlightitem_tmp.deserialize(i)
|
15925
|
+
@HighlightResultSet << mediaaianalysishighlightitem_tmp
|
15926
|
+
end
|
15927
|
+
end
|
15907
15928
|
end
|
15908
15929
|
end
|
15909
15930
|
|
@@ -17056,15 +17077,23 @@ module TencentCloud
|
|
17056
17077
|
# @type Duration: Float
|
17057
17078
|
# @param SegmentSet: 智能精彩集锦子片段列表。
|
17058
17079
|
# @type SegmentSet: Array
|
17080
|
+
# @param HighlightUrl: 智能精彩集锦地址。
|
17081
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17082
|
+
# @type HighlightUrl: String
|
17083
|
+
# @param CovImgUrl: 智能精彩集锦封面地址。
|
17084
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17085
|
+
# @type CovImgUrl: String
|
17059
17086
|
|
17060
|
-
attr_accessor :HighlightPath, :CovImgPath, :Confidence, :Duration, :SegmentSet
|
17087
|
+
attr_accessor :HighlightPath, :CovImgPath, :Confidence, :Duration, :SegmentSet, :HighlightUrl, :CovImgUrl
|
17061
17088
|
|
17062
|
-
def initialize(highlightpath=nil, covimgpath=nil, confidence=nil, duration=nil, segmentset=nil)
|
17089
|
+
def initialize(highlightpath=nil, covimgpath=nil, confidence=nil, duration=nil, segmentset=nil, highlighturl=nil, covimgurl=nil)
|
17063
17090
|
@HighlightPath = highlightpath
|
17064
17091
|
@CovImgPath = covimgpath
|
17065
17092
|
@Confidence = confidence
|
17066
17093
|
@Duration = duration
|
17067
17094
|
@SegmentSet = segmentset
|
17095
|
+
@HighlightUrl = highlighturl
|
17096
|
+
@CovImgUrl = covimgurl
|
17068
17097
|
end
|
17069
17098
|
|
17070
17099
|
def deserialize(params)
|
@@ -17080,6 +17109,8 @@ module TencentCloud
|
|
17080
17109
|
@SegmentSet << highlightsegmentitem_tmp
|
17081
17110
|
end
|
17082
17111
|
end
|
17112
|
+
@HighlightUrl = params['HighlightUrl']
|
17113
|
+
@CovImgUrl = params['CovImgUrl']
|
17083
17114
|
end
|
17084
17115
|
end
|
17085
17116
|
|
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.1123
|
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-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|