tencentcloud-sdk-mps 3.0.903 → 3.0.905

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190612/models.rb +205 -39
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fc5630af333d2b522fb1d1ca17903bb1149a4ec0
4
- data.tar.gz: 137d72b1d37e97d5bdf9efb46cfe9dd2b47f3d1b
3
+ metadata.gz: 2116a0d13cff5bf2fcf600efa9fb5545f04a450f
4
+ data.tar.gz: 8b726f3350c3c2cc9b4900d05318eb8b9d1f79d5
5
5
  SHA512:
6
- metadata.gz: 10a1281f13ae5c5646849df692155b308565a3c250c1febdb92b7c36b88d858863ffbfee1e623e56b09412b19689d684417ce49294a6d9108ec83aed3f24b9e2
7
- data.tar.gz: 1e7a1f925c9a12fe23a35883dd7ee458f4c1756ba4308dec9de2ce5ce583cd797d9dffd6c2097d966ad7fe0daee54c27c707a20822e397e52724347aedca79e7
6
+ metadata.gz: f7b91e8855cef92e46953eb00441198220bd07c263aaad6348654d860841794ae8632873e7a15e120110c02850e5ec98581c502ffe05bb13c094414f7667cc65
7
+ data.tar.gz: 24ed9012ab610ad50fa9fec749bdefddd046bf740242080261d6903da6810937a94b4633836d456865052ac879e2ec702c991cd895269948479a81fcfe6ff822
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.903
1
+ 3.0.905
@@ -752,10 +752,13 @@ module TencentCloud
752
752
  # @param DescriptionTask: 视频内容分析摘要任务的查询结果,当任务类型为 Description 时有效。
753
753
  # 注意:此字段可能返回 null,表示取不到有效值。
754
754
  # @type DescriptionTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskDescriptionResult`
755
+ # @param HorizontalToVerticalTask: 视频内容分析横转竖任务的查询结果,当任务类型为 HorizontalToVertical 时有效。
756
+ # 注意:此字段可能返回 null,表示取不到有效值。
757
+ # @type HorizontalToVerticalTask: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskHorizontalToVerticalResult`
755
758
 
756
- attr_accessor :Type, :ClassificationTask, :CoverTask, :TagTask, :FrameTagTask, :HighlightTask, :DeLogoTask, :SegmentTask, :HeadTailTask, :DescriptionTask
759
+ attr_accessor :Type, :ClassificationTask, :CoverTask, :TagTask, :FrameTagTask, :HighlightTask, :DeLogoTask, :SegmentTask, :HeadTailTask, :DescriptionTask, :HorizontalToVerticalTask
757
760
 
758
- def initialize(type=nil, classificationtask=nil, covertask=nil, tagtask=nil, frametagtask=nil, highlighttask=nil, delogotask=nil, segmenttask=nil, headtailtask=nil, descriptiontask=nil)
761
+ def initialize(type=nil, classificationtask=nil, covertask=nil, tagtask=nil, frametagtask=nil, highlighttask=nil, delogotask=nil, segmenttask=nil, headtailtask=nil, descriptiontask=nil, horizontaltoverticaltask=nil)
759
762
  @Type = type
760
763
  @ClassificationTask = classificationtask
761
764
  @CoverTask = covertask
@@ -766,6 +769,7 @@ module TencentCloud
766
769
  @SegmentTask = segmenttask
767
770
  @HeadTailTask = headtailtask
768
771
  @DescriptionTask = descriptiontask
772
+ @HorizontalToVerticalTask = horizontaltoverticaltask
769
773
  end
770
774
 
771
775
  def deserialize(params)
@@ -806,6 +810,10 @@ module TencentCloud
806
810
  @DescriptionTask = AiAnalysisTaskDescriptionResult.new
807
811
  @DescriptionTask.deserialize(params['DescriptionTask'])
808
812
  end
813
+ unless params['HorizontalToVerticalTask'].nil?
814
+ @HorizontalToVerticalTask = AiAnalysisTaskHorizontalToVerticalResult.new
815
+ @HorizontalToVerticalTask.deserialize(params['HorizontalToVerticalTask'])
816
+ end
809
817
  end
810
818
  end
811
819
 
@@ -1391,6 +1399,96 @@ module TencentCloud
1391
1399
  end
1392
1400
  end
1393
1401
 
1402
+ # 智能横转竖任务输入类型
1403
+ class AiAnalysisTaskHorizontalToVerticalInput < TencentCloud::Common::AbstractModel
1404
+ # @param Definition: 视频智能横转竖模板 ID
1405
+ # 注意:此字段可能返回 null,表示取不到有效值。
1406
+ # @type Definition: Integer
1407
+
1408
+ attr_accessor :Definition
1409
+
1410
+ def initialize(definition=nil)
1411
+ @Definition = definition
1412
+ end
1413
+
1414
+ def deserialize(params)
1415
+ @Definition = params['Definition']
1416
+ end
1417
+ end
1418
+
1419
+ # 智能横转竖结果信息
1420
+ class AiAnalysisTaskHorizontalToVerticalOutput < TencentCloud::Common::AbstractModel
1421
+ # @param Path: 视频智能横转竖列表
1422
+ # 注意:此字段可能返回 null,表示取不到有效值。
1423
+ # @type Path: String
1424
+ # @param OutputStorage: 智能横转竖视频的存储位置
1425
+ # 注意:此字段可能返回 null,表示取不到有效值。
1426
+ # @type OutputStorage: :class:`Tencentcloud::Mps.v20190612.models.TaskOutputStorage`
1427
+ # @param Confidence: 置信度。
1428
+ # 注意:此字段可能返回 null,表示取不到有效值。
1429
+ # @type Confidence: Float
1430
+
1431
+ attr_accessor :Path, :OutputStorage, :Confidence
1432
+
1433
+ def initialize(path=nil, outputstorage=nil, confidence=nil)
1434
+ @Path = path
1435
+ @OutputStorage = outputstorage
1436
+ @Confidence = confidence
1437
+ end
1438
+
1439
+ def deserialize(params)
1440
+ @Path = params['Path']
1441
+ unless params['OutputStorage'].nil?
1442
+ @OutputStorage = TaskOutputStorage.new
1443
+ @OutputStorage.deserialize(params['OutputStorage'])
1444
+ end
1445
+ @Confidence = params['Confidence']
1446
+ end
1447
+ end
1448
+
1449
+ # 智能横转竖结果类型
1450
+ class AiAnalysisTaskHorizontalToVerticalResult < TencentCloud::Common::AbstractModel
1451
+ # @param Status: 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种
1452
+ # 注意:此字段可能返回 null,表示取不到有效值。
1453
+ # @type Status: String
1454
+ # @param ErrCode: 错误码,0:成功,其他值:失败
1455
+ # 注意:此字段可能返回 null,表示取不到有效值。
1456
+ # @type ErrCode: Integer
1457
+ # @param Message: 错误信息
1458
+ # 注意:此字段可能返回 null,表示取不到有效值。
1459
+ # @type Message: String
1460
+ # @param Input: 智能横转竖任务输入
1461
+ # 注意:此字段可能返回 null,表示取不到有效值。
1462
+ # @type Input: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskHorizontalToVerticalInput`
1463
+ # @param Output: 智能横转竖任务输出
1464
+ # 注意:此字段可能返回 null,表示取不到有效值。
1465
+ # @type Output: :class:`Tencentcloud::Mps.v20190612.models.AiAnalysisTaskHorizontalToVerticalOutput`
1466
+
1467
+ attr_accessor :Status, :ErrCode, :Message, :Input, :Output
1468
+
1469
+ def initialize(status=nil, errcode=nil, message=nil, input=nil, output=nil)
1470
+ @Status = status
1471
+ @ErrCode = errcode
1472
+ @Message = message
1473
+ @Input = input
1474
+ @Output = output
1475
+ end
1476
+
1477
+ def deserialize(params)
1478
+ @Status = params['Status']
1479
+ @ErrCode = params['ErrCode']
1480
+ @Message = params['Message']
1481
+ unless params['Input'].nil?
1482
+ @Input = AiAnalysisTaskHorizontalToVerticalInput.new
1483
+ @Input.deserialize(params['Input'])
1484
+ end
1485
+ unless params['Output'].nil?
1486
+ @Output = AiAnalysisTaskHorizontalToVerticalOutput.new
1487
+ @Output.deserialize(params['Output'])
1488
+ end
1489
+ end
1490
+ end
1491
+
1394
1492
  # AI 视频智能分析输入参数类型
1395
1493
  class AiAnalysisTaskInput < TencentCloud::Common::AbstractModel
1396
1494
  # @param Definition: 视频内容分析模板 ID。
@@ -1919,8 +2017,8 @@ module TencentCloud
1919
2017
 
1920
2018
  attr_accessor :SegmentSet, :SubtitlePath, :OutputStorage
1921
2019
  extend Gem::Deprecate
1922
- deprecate :OutputStorage, :none, 2024, 8
1923
- deprecate :OutputStorage=, :none, 2024, 8
2020
+ deprecate :OutputStorage, :none, 2024, 9
2021
+ deprecate :OutputStorage=, :none, 2024, 9
1924
2022
 
1925
2023
  def initialize(segmentset=nil, subtitlepath=nil, outputstorage=nil)
1926
2024
  @SegmentSet = segmentset
@@ -8302,14 +8400,17 @@ module TencentCloud
8302
8400
  # * Preset:系统预置模板;
8303
8401
  # * Custom:用户自定义模板。
8304
8402
  # @type Type: String
8403
+ # @param Name: 视频内容分析模板标识过滤条件,长度限制:64 个字符。
8404
+ # @type Name: String
8305
8405
 
8306
- attr_accessor :Definitions, :Offset, :Limit, :Type
8406
+ attr_accessor :Definitions, :Offset, :Limit, :Type, :Name
8307
8407
 
8308
- def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
8408
+ def initialize(definitions=nil, offset=nil, limit=nil, type=nil, name=nil)
8309
8409
  @Definitions = definitions
8310
8410
  @Offset = offset
8311
8411
  @Limit = limit
8312
8412
  @Type = type
8413
+ @Name = name
8313
8414
  end
8314
8415
 
8315
8416
  def deserialize(params)
@@ -8317,6 +8418,7 @@ module TencentCloud
8317
8418
  @Offset = params['Offset']
8318
8419
  @Limit = params['Limit']
8319
8420
  @Type = params['Type']
8421
+ @Name = params['Name']
8320
8422
  end
8321
8423
  end
8322
8424
 
@@ -8363,14 +8465,17 @@ module TencentCloud
8363
8465
  # * Preset:系统预置模板;
8364
8466
  # * Custom:用户自定义模板。
8365
8467
  # @type Type: String
8468
+ # @param Name: 视频内容识别模板标识过滤条件,长度限制:64 个字符。
8469
+ # @type Name: String
8366
8470
 
8367
- attr_accessor :Definitions, :Offset, :Limit, :Type
8471
+ attr_accessor :Definitions, :Offset, :Limit, :Type, :Name
8368
8472
 
8369
- def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
8473
+ def initialize(definitions=nil, offset=nil, limit=nil, type=nil, name=nil)
8370
8474
  @Definitions = definitions
8371
8475
  @Offset = offset
8372
8476
  @Limit = limit
8373
8477
  @Type = type
8478
+ @Name = name
8374
8479
  end
8375
8480
 
8376
8481
  def deserialize(params)
@@ -8378,6 +8483,7 @@ module TencentCloud
8378
8483
  @Offset = params['Offset']
8379
8484
  @Limit = params['Limit']
8380
8485
  @Type = params['Type']
8486
+ @Name = params['Name']
8381
8487
  end
8382
8488
  end
8383
8489
 
@@ -8426,15 +8532,18 @@ module TencentCloud
8426
8532
  # @type Type: String
8427
8533
  # @param PureAudio: 是否为纯音频,0表示视频,1表示纯音频
8428
8534
  # @type PureAudio: Integer
8535
+ # @param Name: 自适应转码模板标识过滤条件,长度限制:64 个字符
8536
+ # @type Name: String
8429
8537
 
8430
- attr_accessor :Definitions, :Offset, :Limit, :Type, :PureAudio
8538
+ attr_accessor :Definitions, :Offset, :Limit, :Type, :PureAudio, :Name
8431
8539
 
8432
- def initialize(definitions=nil, offset=nil, limit=nil, type=nil, pureaudio=nil)
8540
+ def initialize(definitions=nil, offset=nil, limit=nil, type=nil, pureaudio=nil, name=nil)
8433
8541
  @Definitions = definitions
8434
8542
  @Offset = offset
8435
8543
  @Limit = limit
8436
8544
  @Type = type
8437
8545
  @PureAudio = pureaudio
8546
+ @Name = name
8438
8547
  end
8439
8548
 
8440
8549
  def deserialize(params)
@@ -8443,6 +8552,7 @@ module TencentCloud
8443
8552
  @Limit = params['Limit']
8444
8553
  @Type = params['Type']
8445
8554
  @PureAudio = params['PureAudio']
8555
+ @Name = params['Name']
8446
8556
  end
8447
8557
  end
8448
8558
 
@@ -8489,14 +8599,17 @@ module TencentCloud
8489
8599
  # <li>Preset:系统预置模板;</li>
8490
8600
  # <li>Custom:用户自定义模板。</li>
8491
8601
  # @type Type: String
8602
+ # @param Name: 转动图模板标识过滤条件,长度限制:64 个字符。
8603
+ # @type Name: String
8492
8604
 
8493
- attr_accessor :Definitions, :Offset, :Limit, :Type
8605
+ attr_accessor :Definitions, :Offset, :Limit, :Type, :Name
8494
8606
 
8495
- def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
8607
+ def initialize(definitions=nil, offset=nil, limit=nil, type=nil, name=nil)
8496
8608
  @Definitions = definitions
8497
8609
  @Offset = offset
8498
8610
  @Limit = limit
8499
8611
  @Type = type
8612
+ @Name = name
8500
8613
  end
8501
8614
 
8502
8615
  def deserialize(params)
@@ -8504,6 +8617,7 @@ module TencentCloud
8504
8617
  @Offset = params['Offset']
8505
8618
  @Limit = params['Limit']
8506
8619
  @Type = params['Type']
8620
+ @Name = params['Name']
8507
8621
  end
8508
8622
  end
8509
8623
 
@@ -8550,14 +8664,17 @@ module TencentCloud
8550
8664
  # * Preset:系统预置模板;
8551
8665
  # * Custom:用户自定义模板。
8552
8666
  # @type Type: String
8667
+ # @param Name: 智能审核模板标识过滤条件,长度限制:64 个字符。
8668
+ # @type Name: String
8553
8669
 
8554
- attr_accessor :Definitions, :Offset, :Limit, :Type
8670
+ attr_accessor :Definitions, :Offset, :Limit, :Type, :Name
8555
8671
 
8556
- def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
8672
+ def initialize(definitions=nil, offset=nil, limit=nil, type=nil, name=nil)
8557
8673
  @Definitions = definitions
8558
8674
  @Offset = offset
8559
8675
  @Limit = limit
8560
8676
  @Type = type
8677
+ @Name = name
8561
8678
  end
8562
8679
 
8563
8680
  def deserialize(params)
@@ -8565,6 +8682,7 @@ module TencentCloud
8565
8682
  @Offset = params['Offset']
8566
8683
  @Limit = params['Limit']
8567
8684
  @Type = params['Type']
8685
+ @Name = params['Name']
8568
8686
  end
8569
8687
  end
8570
8688
 
@@ -8753,14 +8871,17 @@ module TencentCloud
8753
8871
  # <li>Preset:系统预置模板;</li>
8754
8872
  # <li>Custom:用户自定义模板。</li>
8755
8873
  # @type Type: String
8874
+ # @param Name: 雪碧图模板标识过滤条件,长度限制:64 个字符。
8875
+ # @type Name: String
8756
8876
 
8757
- attr_accessor :Definitions, :Offset, :Limit, :Type
8877
+ attr_accessor :Definitions, :Offset, :Limit, :Type, :Name
8758
8878
 
8759
- def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
8879
+ def initialize(definitions=nil, offset=nil, limit=nil, type=nil, name=nil)
8760
8880
  @Definitions = definitions
8761
8881
  @Offset = offset
8762
8882
  @Limit = limit
8763
8883
  @Type = type
8884
+ @Name = name
8764
8885
  end
8765
8886
 
8766
8887
  def deserialize(params)
@@ -8768,6 +8889,7 @@ module TencentCloud
8768
8889
  @Offset = params['Offset']
8769
8890
  @Limit = params['Limit']
8770
8891
  @Type = params['Type']
8892
+ @Name = params['Name']
8771
8893
  end
8772
8894
  end
8773
8895
 
@@ -9597,14 +9719,17 @@ module TencentCloud
9597
9719
  # @type Limit: Integer
9598
9720
  # @param Type: "Preset":预设,Custom":客户魔板
9599
9721
  # @type Type: String
9722
+ # @param Name: 媒体质检模板标识过滤条件,长度限制:64 个字符。
9723
+ # @type Name: String
9600
9724
 
9601
- attr_accessor :Definitions, :Offset, :Limit, :Type
9725
+ attr_accessor :Definitions, :Offset, :Limit, :Type, :Name
9602
9726
 
9603
- def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
9727
+ def initialize(definitions=nil, offset=nil, limit=nil, type=nil, name=nil)
9604
9728
  @Definitions = definitions
9605
9729
  @Offset = offset
9606
9730
  @Limit = limit
9607
9731
  @Type = type
9732
+ @Name = name
9608
9733
  end
9609
9734
 
9610
9735
  def deserialize(params)
@@ -9612,6 +9737,7 @@ module TencentCloud
9612
9737
  @Offset = params['Offset']
9613
9738
  @Limit = params['Limit']
9614
9739
  @Type = params['Type']
9740
+ @Name = params['Name']
9615
9741
  end
9616
9742
  end
9617
9743
 
@@ -9698,14 +9824,17 @@ module TencentCloud
9698
9824
  # <li>Preset:系统预置模板;</li>
9699
9825
  # <li>Custom:用户自定义模板。</li>
9700
9826
  # @type Type: String
9827
+ # @param Name: 采样截图模板标识过滤条件,长度限制:64 个字符。
9828
+ # @type Name: String
9701
9829
 
9702
- attr_accessor :Definitions, :Offset, :Limit, :Type
9830
+ attr_accessor :Definitions, :Offset, :Limit, :Type, :Name
9703
9831
 
9704
- def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
9832
+ def initialize(definitions=nil, offset=nil, limit=nil, type=nil, name=nil)
9705
9833
  @Definitions = definitions
9706
9834
  @Offset = offset
9707
9835
  @Limit = limit
9708
9836
  @Type = type
9837
+ @Name = name
9709
9838
  end
9710
9839
 
9711
9840
  def deserialize(params)
@@ -9713,6 +9842,7 @@ module TencentCloud
9713
9842
  @Offset = params['Offset']
9714
9843
  @Limit = params['Limit']
9715
9844
  @Type = params['Type']
9845
+ @Name = params['Name']
9716
9846
  end
9717
9847
  end
9718
9848
 
@@ -9828,14 +9958,17 @@ module TencentCloud
9828
9958
  # <li>Preset:系统预置模板;</li>
9829
9959
  # <li>Custom:用户自定义模板。</li>
9830
9960
  # @type Type: String
9961
+ # @param Name: 指定时间点截图模板标识过滤条件,长度限制:64 个字符。
9962
+ # @type Name: String
9831
9963
 
9832
- attr_accessor :Definitions, :Offset, :Limit, :Type
9964
+ attr_accessor :Definitions, :Offset, :Limit, :Type, :Name
9833
9965
 
9834
- def initialize(definitions=nil, offset=nil, limit=nil, type=nil)
9966
+ def initialize(definitions=nil, offset=nil, limit=nil, type=nil, name=nil)
9835
9967
  @Definitions = definitions
9836
9968
  @Offset = offset
9837
9969
  @Limit = limit
9838
9970
  @Type = type
9971
+ @Name = name
9839
9972
  end
9840
9973
 
9841
9974
  def deserialize(params)
@@ -9843,6 +9976,7 @@ module TencentCloud
9843
9976
  @Offset = params['Offset']
9844
9977
  @Limit = params['Limit']
9845
9978
  @Type = params['Type']
9979
+ @Name = params['Name']
9846
9980
  end
9847
9981
  end
9848
9982
 
@@ -10758,10 +10892,12 @@ module TencentCloud
10758
10892
  # <li>Enhance:音视频增强模板。</li>
10759
10893
  # 默认空,不限制类型。
10760
10894
  # @type TranscodeType: String
10895
+ # @param Name: 转码模板标识过滤条件,长度限制:64 个字符。
10896
+ # @type Name: String
10761
10897
 
10762
- attr_accessor :Definitions, :Type, :ContainerType, :TEHDType, :Offset, :Limit, :TranscodeType
10898
+ attr_accessor :Definitions, :Type, :ContainerType, :TEHDType, :Offset, :Limit, :TranscodeType, :Name
10763
10899
 
10764
- def initialize(definitions=nil, type=nil, containertype=nil, tehdtype=nil, offset=nil, limit=nil, transcodetype=nil)
10900
+ def initialize(definitions=nil, type=nil, containertype=nil, tehdtype=nil, offset=nil, limit=nil, transcodetype=nil, name=nil)
10765
10901
  @Definitions = definitions
10766
10902
  @Type = type
10767
10903
  @ContainerType = containertype
@@ -10769,6 +10905,7 @@ module TencentCloud
10769
10905
  @Offset = offset
10770
10906
  @Limit = limit
10771
10907
  @TranscodeType = transcodetype
10908
+ @Name = name
10772
10909
  end
10773
10910
 
10774
10911
  def deserialize(params)
@@ -10779,6 +10916,7 @@ module TencentCloud
10779
10916
  @Offset = params['Offset']
10780
10917
  @Limit = params['Limit']
10781
10918
  @TranscodeType = params['TranscodeType']
10919
+ @Name = params['Name']
10782
10920
  end
10783
10921
  end
10784
10922
 
@@ -10827,14 +10965,17 @@ module TencentCloud
10827
10965
  # <li>默认值:10;</li>
10828
10966
  # <li>最大值:100。</li>
10829
10967
  # @type Limit: Integer
10968
+ # @param Name: 水印模板标识过滤条件,长度限制:64 个字符。
10969
+ # @type Name: String
10830
10970
 
10831
- attr_accessor :Definitions, :Type, :Offset, :Limit
10971
+ attr_accessor :Definitions, :Type, :Offset, :Limit, :Name
10832
10972
 
10833
- def initialize(definitions=nil, type=nil, offset=nil, limit=nil)
10973
+ def initialize(definitions=nil, type=nil, offset=nil, limit=nil, name=nil)
10834
10974
  @Definitions = definitions
10835
10975
  @Type = type
10836
10976
  @Offset = offset
10837
10977
  @Limit = limit
10978
+ @Name = name
10838
10979
  end
10839
10980
 
10840
10981
  def deserialize(params)
@@ -10842,6 +10983,7 @@ module TencentCloud
10842
10983
  @Type = params['Type']
10843
10984
  @Offset = params['Offset']
10844
10985
  @Limit = params['Limit']
10986
+ @Name = params['Name']
10845
10987
  end
10846
10988
  end
10847
10989
 
@@ -12362,19 +12504,24 @@ module TencentCloud
12362
12504
  # @type StartTimeOffset: Float
12363
12505
  # @param EndTimeOffset: 片段结束时间偏移。
12364
12506
  # @type EndTimeOffset: Float
12507
+ # @param SegmentTags: 片段标签
12508
+ # 注意:此字段可能返回 null,表示取不到有效值。
12509
+ # @type SegmentTags: Array
12365
12510
 
12366
- attr_accessor :Confidence, :StartTimeOffset, :EndTimeOffset
12511
+ attr_accessor :Confidence, :StartTimeOffset, :EndTimeOffset, :SegmentTags
12367
12512
 
12368
- def initialize(confidence=nil, starttimeoffset=nil, endtimeoffset=nil)
12513
+ def initialize(confidence=nil, starttimeoffset=nil, endtimeoffset=nil, segmenttags=nil)
12369
12514
  @Confidence = confidence
12370
12515
  @StartTimeOffset = starttimeoffset
12371
12516
  @EndTimeOffset = endtimeoffset
12517
+ @SegmentTags = segmenttags
12372
12518
  end
12373
12519
 
12374
12520
  def deserialize(params)
12375
12521
  @Confidence = params['Confidence']
12376
12522
  @StartTimeOffset = params['StartTimeOffset']
12377
12523
  @EndTimeOffset = params['EndTimeOffset']
12524
+ @SegmentTags = params['SegmentTags']
12378
12525
  end
12379
12526
  end
12380
12527
 
@@ -13003,10 +13150,10 @@ module TencentCloud
13003
13150
 
13004
13151
  attr_accessor :QualityControlResults, :DiagnoseResults, :QualityControlResultSet, :DiagnoseResultSet
13005
13152
  extend Gem::Deprecate
13006
- deprecate :QualityControlResults, :none, 2024, 8
13007
- deprecate :QualityControlResults=, :none, 2024, 8
13008
- deprecate :DiagnoseResults, :none, 2024, 8
13009
- deprecate :DiagnoseResults=, :none, 2024, 8
13153
+ deprecate :QualityControlResults, :none, 2024, 9
13154
+ deprecate :QualityControlResults=, :none, 2024, 9
13155
+ deprecate :DiagnoseResults, :none, 2024, 9
13156
+ deprecate :DiagnoseResults=, :none, 2024, 9
13010
13157
 
13011
13158
  def initialize(qualitycontrolresults=nil, diagnoseresults=nil, qualitycontrolresultset=nil, diagnoseresultset=nil)
13012
13159
  @QualityControlResults = qualitycontrolresults
@@ -20844,7 +20991,7 @@ module TencentCloud
20844
20991
  # @type Switch: String
20845
20992
  # @param LabelSet: 用户自定义文本过滤标签,审核结果包含选择的标签则返回结果,如果过滤标签为空,则审核结果全部返回。如果要使用标签过滤功能,添加自定义文本关键词素材时需要添加对应标签。
20846
20993
  # 标签个数最多 10 个,每个标签长度最多 16 个字符。
20847
- # @type LabelSet: String
20994
+ # @type LabelSet: Array
20848
20995
  # @param BlockConfidence: 判定涉嫌违规的分数阈值,当智能审核达到该分数以上,认为涉嫌违规。取值范围:0~100。
20849
20996
  # @type BlockConfidence: Integer
20850
20997
  # @param ReviewConfidence: 判定需人工复核是否违规的分数阈值,当智能审核达到该分数以上,认为需人工复核。取值范围:0~100。
@@ -21005,12 +21152,14 @@ module TencentCloud
21005
21152
  # <li>vp9:VP9 编码</li>
21006
21153
  # <li>mpeg2:MPEG2 编码</li>
21007
21154
  # <li>dnxhd:DNxHD 编码</li>
21155
+ # <li>mv-hevc:MV-HEVC 编码</li>
21008
21156
  # 注意:目前 H.265 编码必须指定分辨率,并且需要在 640*480 以内。
21009
21157
 
21010
21158
  # 注意:av1 编码容器目前只支持 mp4 ,webm,mkv。
21011
21159
  # 注意:H.266 编码容器目前只支持 mp4 ,hls,ts,mov。
21012
21160
  # 注意:VP8、VP9编码容器目前只支持webm,mkv。
21013
21161
  # 注意:MPEG2、dnxhd 编码容器目前只支持mxf。
21162
+ # 注意:MV-HEVC编码容器目前只支持mp4,hls,mov。其中hls格式只支持mp4分片格式。
21014
21163
  # @type Codec: String
21015
21164
  # @param Fps: 视频帧率,取值范围:
21016
21165
  # 当FpsDenominator的值为空时,范围:[0, 120],单位:Hz;
@@ -21040,8 +21189,7 @@ module TencentCloud
21040
21189
  # <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
21041
21190
  # 默认值:0。
21042
21191
  # @type Height: Integer
21043
- # @param Gop: 关键帧 I 帧之间的间隔,取值范围:0 和 [1, 100000],单位:帧数。
21044
- # 当填 0 或不填时,系统将自动设置 gop 长度。
21192
+ # @param Gop: 关键帧 I 帧之间的间隔,取值范围:0 和 [1, 100000],单位:帧数。 当填 0 或不填时,系统将自动设置 gop 长度。
21045
21193
  # @type Gop: Integer
21046
21194
  # @param FillType: 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
21047
21195
  # <li> stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;</li>
@@ -21067,10 +21215,16 @@ module TencentCloud
21067
21215
  # 注意:值必须大于0
21068
21216
  # 注意:此字段可能返回 null,表示取不到有效值。
21069
21217
  # @type FpsDenominator: Integer
21218
+ # @param Stereo3dType: 3D视频拼接方式,仅mv-hevc,3D视频生效,可选值:
21219
+ # <li>side_by_side:左右视角</li>
21220
+ # <li>top_bottom:上下视角</li>
21221
+ # 默认值:side_by_side
21222
+ # 注意:此字段可能返回 null,表示取不到有效值。
21223
+ # @type Stereo3dType: String
21070
21224
 
21071
- attr_accessor :Codec, :Fps, :Bitrate, :ResolutionAdaptive, :Width, :Height, :Gop, :FillType, :Vcrf, :SegmentType, :FpsDenominator
21225
+ attr_accessor :Codec, :Fps, :Bitrate, :ResolutionAdaptive, :Width, :Height, :Gop, :FillType, :Vcrf, :SegmentType, :FpsDenominator, :Stereo3dType
21072
21226
 
21073
- def initialize(codec=nil, fps=nil, bitrate=nil, resolutionadaptive=nil, width=nil, height=nil, gop=nil, filltype=nil, vcrf=nil, segmenttype=nil, fpsdenominator=nil)
21227
+ def initialize(codec=nil, fps=nil, bitrate=nil, resolutionadaptive=nil, width=nil, height=nil, gop=nil, filltype=nil, vcrf=nil, segmenttype=nil, fpsdenominator=nil, stereo3dtype=nil)
21074
21228
  @Codec = codec
21075
21229
  @Fps = fps
21076
21230
  @Bitrate = bitrate
@@ -21082,6 +21236,7 @@ module TencentCloud
21082
21236
  @Vcrf = vcrf
21083
21237
  @SegmentType = segmenttype
21084
21238
  @FpsDenominator = fpsdenominator
21239
+ @Stereo3dType = stereo3dtype
21085
21240
  end
21086
21241
 
21087
21242
  def deserialize(params)
@@ -21096,6 +21251,7 @@ module TencentCloud
21096
21251
  @Vcrf = params['Vcrf']
21097
21252
  @SegmentType = params['SegmentType']
21098
21253
  @FpsDenominator = params['FpsDenominator']
21254
+ @Stereo3dType = params['Stereo3dType']
21099
21255
  end
21100
21256
  end
21101
21257
 
@@ -21110,12 +21266,14 @@ module TencentCloud
21110
21266
  # <li>vp9:VP9 编码</li>
21111
21267
  # <li>mpeg2:MPEG2 编码</li>
21112
21268
  # <li>dnxhd:DNxHD 编码</li>
21269
+ # <li>mv-hevc:MV-HEVC 编码</li>
21113
21270
  # 注意:目前 H.265 编码必须指定分辨率,并且需要在 640*480 以内。
21114
21271
 
21115
21272
  # 注意:av1 编码容器目前只支持 mp4 ,webm,mkv。
21116
21273
  # 注意:H.266 编码容器目前只支持 mp4 ,hls,ts,mov。
21117
21274
  # 注意:VP8、VP9编码容器目前只支持webm,mkv。
21118
21275
  # 注意:MPEG2、dnxhd 编码容器目前只支持mxf。
21276
+ # 注意:MV-HEVC编码容器目前只支持mp4,hls,mov。其中hls格式只支持mp4分片格式。
21119
21277
  # 注意:此字段可能返回 null,表示取不到有效值。
21120
21278
  # @type Codec: String
21121
21279
  # @param Fps: 视频帧率,取值范围:
@@ -21176,10 +21334,16 @@ module TencentCloud
21176
21334
  # 注意:值必须大于0
21177
21335
  # 注意:此字段可能返回 null,表示取不到有效值。
21178
21336
  # @type FpsDenominator: Integer
21337
+ # @param Stereo3dType: 3D视频拼接方式,仅mv-hevc,3D视频生效,可选值:
21338
+ # <li>side_by_side:左右视角</li>
21339
+ # <li>top_bottom:上下视角</li>
21340
+ # 默认值:side_by_side
21341
+ # 注意:此字段可能返回 null,表示取不到有效值。
21342
+ # @type Stereo3dType: String
21179
21343
 
21180
- attr_accessor :Codec, :Fps, :Bitrate, :ResolutionAdaptive, :Width, :Height, :Gop, :FillType, :Vcrf, :ContentAdaptStream, :SegmentType, :FpsDenominator
21344
+ attr_accessor :Codec, :Fps, :Bitrate, :ResolutionAdaptive, :Width, :Height, :Gop, :FillType, :Vcrf, :ContentAdaptStream, :SegmentType, :FpsDenominator, :Stereo3dType
21181
21345
 
21182
- def initialize(codec=nil, fps=nil, bitrate=nil, resolutionadaptive=nil, width=nil, height=nil, gop=nil, filltype=nil, vcrf=nil, contentadaptstream=nil, segmenttype=nil, fpsdenominator=nil)
21346
+ def initialize(codec=nil, fps=nil, bitrate=nil, resolutionadaptive=nil, width=nil, height=nil, gop=nil, filltype=nil, vcrf=nil, contentadaptstream=nil, segmenttype=nil, fpsdenominator=nil, stereo3dtype=nil)
21183
21347
  @Codec = codec
21184
21348
  @Fps = fps
21185
21349
  @Bitrate = bitrate
@@ -21192,6 +21356,7 @@ module TencentCloud
21192
21356
  @ContentAdaptStream = contentadaptstream
21193
21357
  @SegmentType = segmenttype
21194
21358
  @FpsDenominator = fpsdenominator
21359
+ @Stereo3dType = stereo3dtype
21195
21360
  end
21196
21361
 
21197
21362
  def deserialize(params)
@@ -21207,6 +21372,7 @@ module TencentCloud
21207
21372
  @ContentAdaptStream = params['ContentAdaptStream']
21208
21373
  @SegmentType = params['SegmentType']
21209
21374
  @FpsDenominator = params['FpsDenominator']
21375
+ @Stereo3dType = params['Stereo3dType']
21210
21376
  end
21211
21377
  end
21212
21378
 
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.903
4
+ version: 3.0.905
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-10 00:00:00.000000000 Z
11
+ date: 2024-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common