tencentcloud-sdk-mps 3.0.1112 → 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 +35 -14
- 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
@@ -2129,8 +2129,8 @@ module TencentCloud
|
|
2129
2129
|
|
2130
2130
|
attr_accessor :SegmentSet, :SubtitlePath, :OutputStorage
|
2131
2131
|
extend Gem::Deprecate
|
2132
|
-
deprecate :OutputStorage, :none, 2025,
|
2133
|
-
deprecate :OutputStorage=, :none, 2025,
|
2132
|
+
deprecate :OutputStorage, :none, 2025, 8
|
2133
|
+
deprecate :OutputStorage=, :none, 2025, 8
|
2134
2134
|
|
2135
2135
|
def initialize(segmentset=nil, subtitlepath=nil, outputstorage=nil)
|
2136
2136
|
@SegmentSet = segmentset
|
@@ -13854,8 +13854,8 @@ module TencentCloud
|
|
13854
13854
|
|
13855
13855
|
attr_accessor :TaskType, :EvaluationTypeSet, :EvaluationRangeType, :ContrastInfoSet, :ContrastMediaSet, :ContrastTemplateSet, :StartTime, :EndTime, :StartFrameIndex, :EndFrameIndex, :ResolutionAlignmentMode, :BitrateSet, :VCRFSet
|
13856
13856
|
extend Gem::Deprecate
|
13857
|
-
deprecate :ContrastInfoSet, :none, 2025,
|
13858
|
-
deprecate :ContrastInfoSet=, :none, 2025,
|
13857
|
+
deprecate :ContrastInfoSet, :none, 2025, 8
|
13858
|
+
deprecate :ContrastInfoSet=, :none, 2025, 8
|
13859
13859
|
|
13860
13860
|
def initialize(tasktype=nil, evaluationtypeset=nil, evaluationrangetype=nil, contrastinfoset=nil, contrastmediaset=nil, contrasttemplateset=nil, starttime=nil, endtime=nil, startframeindex=nil, endframeindex=nil, resolutionalignmentmode=nil, bitrateset=nil, vcrfset=nil)
|
13861
13861
|
@TaskType = tasktype
|
@@ -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
|
|
@@ -15924,10 +15937,10 @@ module TencentCloud
|
|
15924
15937
|
|
15925
15938
|
attr_accessor :QualityControlResults, :DiagnoseResults, :QualityControlResultSet, :DiagnoseResultSet
|
15926
15939
|
extend Gem::Deprecate
|
15927
|
-
deprecate :QualityControlResults, :none, 2025,
|
15928
|
-
deprecate :QualityControlResults=, :none, 2025,
|
15929
|
-
deprecate :DiagnoseResults, :none, 2025,
|
15930
|
-
deprecate :DiagnoseResults=, :none, 2025,
|
15940
|
+
deprecate :QualityControlResults, :none, 2025, 8
|
15941
|
+
deprecate :QualityControlResults=, :none, 2025, 8
|
15942
|
+
deprecate :DiagnoseResults, :none, 2025, 8
|
15943
|
+
deprecate :DiagnoseResults=, :none, 2025, 8
|
15931
15944
|
|
15932
15945
|
def initialize(qualitycontrolresults=nil, diagnoseresults=nil, qualitycontrolresultset=nil, diagnoseresultset=nil)
|
15933
15946
|
@QualityControlResults = qualitycontrolresults
|
@@ -24938,16 +24951,24 @@ module TencentCloud
|
|
24938
24951
|
|
24939
24952
|
# 媒体质检的检测策略。
|
24940
24953
|
class TimeSpotCheck < TencentCloud::Common::AbstractModel
|
24941
|
-
# @param CheckDuration:
|
24954
|
+
# @param CheckDuration: 每次循环检测的时长。取值范围(单位s):
|
24942
24955
|
|
24943
24956
|
# - 最小值:10
|
24944
24957
|
# - 最大值:86400
|
24945
24958
|
# @type CheckDuration: Integer
|
24946
|
-
# @param CheckInterval:
|
24959
|
+
# @param CheckInterval: 抽检间隔,表示在一次检测结束后,等待多长时间后,再次检测。取值范围(单位 s):
|
24960
|
+
# - 最小值:10
|
24961
|
+
# - 最大值:3600
|
24947
24962
|
# @type CheckInterval: Integer
|
24948
|
-
# @param SkipDuration:
|
24963
|
+
# @param SkipDuration: 片头跳过时长。取值范围(单位 s):
|
24964
|
+
# - 最小值:1
|
24965
|
+
# - 最大值:1800
|
24949
24966
|
# @type SkipDuration: Integer
|
24950
|
-
# @param CirclesNumber:
|
24967
|
+
# @param CirclesNumber: 循环次数。取值范围:
|
24968
|
+
# - 最小值:0
|
24969
|
+
# - 最大值:1000
|
24970
|
+
|
24971
|
+
# 取值为 0 或为空时,表示循环至视频结束。
|
24951
24972
|
# @type CirclesNumber: Integer
|
24952
24973
|
|
24953
24974
|
attr_accessor :CheckDuration, :CheckInterval, :SkipDuration, :CirclesNumber
|
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-
|
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
|