tencentcloud-sdk-mps 3.0.1044 → 3.0.1045

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190612/models.rb +61 -13
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4d4f938652b8dbfc682e117ec8296ce059c3664f
4
- data.tar.gz: eb814dbf3931d1881576e1ca0901f743c166f9f9
3
+ metadata.gz: 6702f42492109c4daf48acbc532d0846137bb5e7
4
+ data.tar.gz: 9a600d320207422cacfab902c2493b389fb27449
5
5
  SHA512:
6
- metadata.gz: a0160a9e237e16c934fcf9709a9e3c0de4eaabd67515cf420f5e155a635fe2be420e524771e99f2671cd9a66089dfa483ce7523b3eec307a87becf5e5d362c0e
7
- data.tar.gz: 3028c4412d7628bdead3429bcdcc7c4dd3b2447962b2d533907ada0983e1c9537cd525eb4be27eb2fa4ee4e05e164f0bc37c2740af936dadfda5e1e6aa3460fe
6
+ metadata.gz: 6dc784eb1fc669247de7df27ffadc5811be447cbc7cd047445ae163753a311fa3aec209c5c660cc8e630a0f0bc39ce46af41be98bdb9091c846c70fa44318a3e
7
+ data.tar.gz: ad0ddf92cc43c2658170a59550287992752cb6f4d2404bd8c0dbaf25440fbe27fb88d1381d701969b8082814cbdb04d667d3e32c696a6f9d2479ca736f71a57f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1044
1
+ 3.0.1045
@@ -7005,17 +7005,20 @@ module TencentCloud
7005
7005
 
7006
7006
  # CreateLiveRecordTemplate请求参数结构体
7007
7007
  class CreateLiveRecordTemplateRequest < TencentCloud::Common::AbstractModel
7008
- # @param HLSConfigure: HLS 配置参数
7008
+ # @param HLSConfigure: HLS配置参数,和MP4Configure需要二选一必填。
7009
7009
  # @type HLSConfigure: :class:`Tencentcloud::Mps.v20190612.models.HLSConfigureInfo`
7010
+ # @param MP4Configure: MP4配置参数,和HLSConfigure需要二选一必填。
7011
+ # @type MP4Configure: :class:`Tencentcloud::Mps.v20190612.models.MP4ConfigureInfo`
7010
7012
  # @param Name: 录制模板名称,长度限制:64 个字符。
7011
7013
  # @type Name: String
7012
7014
  # @param Comment: 模板描述信息,长度限制:256 个字符。
7013
7015
  # @type Comment: String
7014
7016
 
7015
- attr_accessor :HLSConfigure, :Name, :Comment
7017
+ attr_accessor :HLSConfigure, :MP4Configure, :Name, :Comment
7016
7018
 
7017
- def initialize(hlsconfigure=nil, name=nil, comment=nil)
7019
+ def initialize(hlsconfigure=nil, mp4configure=nil, name=nil, comment=nil)
7018
7020
  @HLSConfigure = hlsconfigure
7021
+ @MP4Configure = mp4configure
7019
7022
  @Name = name
7020
7023
  @Comment = comment
7021
7024
  end
@@ -7025,6 +7028,10 @@ module TencentCloud
7025
7028
  @HLSConfigure = HLSConfigureInfo.new
7026
7029
  @HLSConfigure.deserialize(params['HLSConfigure'])
7027
7030
  end
7031
+ unless params['MP4Configure'].nil?
7032
+ @MP4Configure = MP4ConfigureInfo.new
7033
+ @MP4Configure.deserialize(params['MP4Configure'])
7034
+ end
7028
7035
  @Name = params['Name']
7029
7036
  @Comment = params['Comment']
7030
7037
  end
@@ -14698,6 +14705,8 @@ module TencentCloud
14698
14705
  # @type Definition: Integer
14699
14706
  # @param HLSConfigure: HLS 配置参数
14700
14707
  # @type HLSConfigure: :class:`Tencentcloud::Mps.v20190612.models.HLSConfigureInfo`
14708
+ # @param MP4Configure: MP4配置参数
14709
+ # @type MP4Configure: :class:`Tencentcloud::Mps.v20190612.models.MP4ConfigureInfo`
14701
14710
  # @param Name: 录制模板名称。
14702
14711
  # @type Name: String
14703
14712
  # @param Comment: 模板描述信息。
@@ -14711,11 +14720,12 @@ module TencentCloud
14711
14720
  # @param UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
14712
14721
  # @type UpdateTime: String
14713
14722
 
14714
- attr_accessor :Definition, :HLSConfigure, :Name, :Comment, :Type, :CreateTime, :UpdateTime
14723
+ attr_accessor :Definition, :HLSConfigure, :MP4Configure, :Name, :Comment, :Type, :CreateTime, :UpdateTime
14715
14724
 
14716
- def initialize(definition=nil, hlsconfigure=nil, name=nil, comment=nil, type=nil, createtime=nil, updatetime=nil)
14725
+ def initialize(definition=nil, hlsconfigure=nil, mp4configure=nil, name=nil, comment=nil, type=nil, createtime=nil, updatetime=nil)
14717
14726
  @Definition = definition
14718
14727
  @HLSConfigure = hlsconfigure
14728
+ @MP4Configure = mp4configure
14719
14729
  @Name = name
14720
14730
  @Comment = comment
14721
14731
  @Type = type
@@ -14729,6 +14739,10 @@ module TencentCloud
14729
14739
  @HLSConfigure = HLSConfigureInfo.new
14730
14740
  @HLSConfigure.deserialize(params['HLSConfigure'])
14731
14741
  end
14742
+ unless params['MP4Configure'].nil?
14743
+ @MP4Configure = MP4ConfigureInfo.new
14744
+ @MP4Configure.deserialize(params['MP4Configure'])
14745
+ end
14732
14746
  @Name = params['Name']
14733
14747
  @Comment = params['Comment']
14734
14748
  @Type = params['Type']
@@ -15828,6 +15842,22 @@ module TencentCloud
15828
15842
  end
15829
15843
  end
15830
15844
 
15845
+ # MP4配置参数
15846
+ class MP4ConfigureInfo < TencentCloud::Common::AbstractModel
15847
+ # @param Interval: 录制周期,单位:秒,取值范围 10 分钟到720分钟。默认值:60分钟(3600秒)。
15848
+ # @type Interval: Integer
15849
+
15850
+ attr_accessor :Interval
15851
+
15852
+ def initialize(interval=nil)
15853
+ @Interval = interval
15854
+ end
15855
+
15856
+ def deserialize(params)
15857
+ @Interval = params['Interval']
15858
+ end
15859
+ end
15860
+
15831
15861
  # ManageTask请求参数结构体
15832
15862
  class ManageTaskRequest < TencentCloud::Common::AbstractModel
15833
15863
  # @param OperationType: 操作类型,取值范围:
@@ -17562,6 +17592,8 @@ module TencentCloud
17562
17592
  # ModifyAsrHotwords请求参数结构体
17563
17593
  class ModifyAsrHotwordsRequest < TencentCloud::Common::AbstractModel
17564
17594
  # @param HotwordsId: 热词库 id
17595
+ # 如果热词库是文本热词:Name 和 Content 至少填一个
17596
+ # 如果热词库是:Name、FileContent 和 FileName 至少填一个
17565
17597
  # @type HotwordsId: String
17566
17598
  # @param Name: 热词库名称
17567
17599
  # @type Name: String
@@ -17884,18 +17916,21 @@ module TencentCloud
17884
17916
  class ModifyLiveRecordTemplateRequest < TencentCloud::Common::AbstractModel
17885
17917
  # @param Definition: 录制模板唯一标识。
17886
17918
  # @type Definition: Integer
17887
- # @param HLSConfigure: HLS 配置参数
17919
+ # @param HLSConfigure: HLS配置参数,和MP4Configure需要二选一必填。
17888
17920
  # @type HLSConfigure: :class:`Tencentcloud::Mps.v20190612.models.HLSConfigureInfo`
17921
+ # @param MP4Configure: MP4配置参数,和HLSConfigure需要二选一必填。
17922
+ # @type MP4Configure: :class:`Tencentcloud::Mps.v20190612.models.MP4ConfigureInfo`
17889
17923
  # @param Name: 录制模板名称,长度限制:64 个字符。
17890
17924
  # @type Name: String
17891
17925
  # @param Comment: 模板描述信息,长度限制:256 个字符。
17892
17926
  # @type Comment: String
17893
17927
 
17894
- attr_accessor :Definition, :HLSConfigure, :Name, :Comment
17928
+ attr_accessor :Definition, :HLSConfigure, :MP4Configure, :Name, :Comment
17895
17929
 
17896
- def initialize(definition=nil, hlsconfigure=nil, name=nil, comment=nil)
17930
+ def initialize(definition=nil, hlsconfigure=nil, mp4configure=nil, name=nil, comment=nil)
17897
17931
  @Definition = definition
17898
17932
  @HLSConfigure = hlsconfigure
17933
+ @MP4Configure = mp4configure
17899
17934
  @Name = name
17900
17935
  @Comment = comment
17901
17936
  end
@@ -17906,6 +17941,10 @@ module TencentCloud
17906
17941
  @HLSConfigure = HLSConfigureInfo.new
17907
17942
  @HLSConfigure.deserialize(params['HLSConfigure'])
17908
17943
  end
17944
+ unless params['MP4Configure'].nil?
17945
+ @MP4Configure = MP4ConfigureInfo.new
17946
+ @MP4Configure.deserialize(params['MP4Configure'])
17947
+ end
17909
17948
  @Name = params['Name']
17910
17949
  @Comment = params['Comment']
17911
17950
  end
@@ -20415,9 +20454,12 @@ module TencentCloud
20415
20454
  # @param NoVideo: 为true时表示视频无视频轨。
20416
20455
  # 注意:此字段可能返回 null,表示取不到有效值。
20417
20456
  # @type NoVideo: Boolean
20418
- # @param QualityEvaluationScore: 视频无参考质量打分,百分制。
20457
+ # @param QualityEvaluationScore: 视频无参考质量评分,百分制。
20419
20458
  # 注意:此字段可能返回 null,表示取不到有效值。
20420
20459
  # @type QualityEvaluationScore: Integer
20460
+ # @param QualityEvaluationMeanOpinionScore: 视频无参考质量评分,MOS分数。
20461
+ # 注意:此字段可能返回 null,表示取不到有效值。
20462
+ # @type QualityEvaluationMeanOpinionScore: Float
20421
20463
  # @param QualityControlResultSet: 内容质检检出异常项。
20422
20464
  # 注意:此字段可能返回 null,表示取不到有效值。
20423
20465
  # @type QualityControlResultSet: Array
@@ -20425,12 +20467,13 @@ module TencentCloud
20425
20467
  # 注意:此字段可能返回 null,表示取不到有效值。
20426
20468
  # @type ContainerDiagnoseResultSet: Array
20427
20469
 
20428
- attr_accessor :NoAudio, :NoVideo, :QualityEvaluationScore, :QualityControlResultSet, :ContainerDiagnoseResultSet
20470
+ attr_accessor :NoAudio, :NoVideo, :QualityEvaluationScore, :QualityEvaluationMeanOpinionScore, :QualityControlResultSet, :ContainerDiagnoseResultSet
20429
20471
 
20430
- def initialize(noaudio=nil, novideo=nil, qualityevaluationscore=nil, qualitycontrolresultset=nil, containerdiagnoseresultset=nil)
20472
+ def initialize(noaudio=nil, novideo=nil, qualityevaluationscore=nil, qualityevaluationmeanopinionscore=nil, qualitycontrolresultset=nil, containerdiagnoseresultset=nil)
20431
20473
  @NoAudio = noaudio
20432
20474
  @NoVideo = novideo
20433
20475
  @QualityEvaluationScore = qualityevaluationscore
20476
+ @QualityEvaluationMeanOpinionScore = qualityevaluationmeanopinionscore
20434
20477
  @QualityControlResultSet = qualitycontrolresultset
20435
20478
  @ContainerDiagnoseResultSet = containerdiagnoseresultset
20436
20479
  end
@@ -20439,6 +20482,7 @@ module TencentCloud
20439
20482
  @NoAudio = params['NoAudio']
20440
20483
  @NoVideo = params['NoVideo']
20441
20484
  @QualityEvaluationScore = params['QualityEvaluationScore']
20485
+ @QualityEvaluationMeanOpinionScore = params['QualityEvaluationMeanOpinionScore']
20442
20486
  unless params['QualityControlResultSet'].nil?
20443
20487
  @QualityControlResultSet = []
20444
20488
  params['QualityControlResultSet'].each do |i|
@@ -24983,19 +25027,23 @@ module TencentCloud
24983
25027
  # @type Start: Float
24984
25028
  # @param End: 字词结束时间戳,单位秒。
24985
25029
  # @type End: Float
25030
+ # @param Trans: 翻译文本
25031
+ # @type Trans: String
24986
25032
 
24987
- attr_accessor :Word, :Start, :End
25033
+ attr_accessor :Word, :Start, :End, :Trans
24988
25034
 
24989
- def initialize(word=nil, start=nil, _end=nil)
25035
+ def initialize(word=nil, start=nil, _end=nil, trans=nil)
24990
25036
  @Word = word
24991
25037
  @Start = start
24992
25038
  @End = _end
25039
+ @Trans = trans
24993
25040
  end
24994
25041
 
24995
25042
  def deserialize(params)
24996
25043
  @Word = params['Word']
24997
25044
  @Start = params['Start']
24998
25045
  @End = params['End']
25046
+ @Trans = params['Trans']
24999
25047
  end
25000
25048
  end
25001
25049
 
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.1044
4
+ version: 3.0.1045
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-04-22 00:00:00.000000000 Z
11
+ date: 2025-04-23 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
36
  - lib/v20190612/client.rb
38
37
  - lib/v20190612/models.rb
38
+ - lib/tencentcloud-sdk-mps.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: