tencentcloud-sdk-cme 3.0.1169 → 3.0.1187

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/v20191029/models.rb +18 -10
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3c22c6edcc62d27e0d14ecf48e6673b9702f3361
4
- data.tar.gz: e25213e1189b3752c1901c18ee63bc09bb8fa49d
3
+ metadata.gz: a09dbbbbf065234f641d504e4f8059bdb4c63c80
4
+ data.tar.gz: 37d8cbc696b4a962b520f65e45594367c6293b6e
5
5
  SHA512:
6
- metadata.gz: 1570e16f6f8fd7c53adb8719af4b1d0ec825816423659c4d70fa3837d56f6c5dcb5532cfb2f948410070bd9a8f8669c9dcdcfcbeec8f91f208399a354f85c685
7
- data.tar.gz: 652208c3582c0e9c69d67aa6c3d5db7bb131a50ca421a7232ccdf41e44843027c4a48835beeee67747804fc0c8d5f7f0ec4842984aec15a91f4d8f3ee8257778
6
+ metadata.gz: 99ac4d84117f7ed97106f17a0ea026ca6886ca912e52cd5f2be09023954ae2fda158a269ec314b92beed0007930aa68193183fb0a0361bbb8a3e7d11fa1e479e
7
+ data.tar.gz: 61cd4d1e6518c22a7745dfb5fc84003f226b676e7fe32947903ac979186c1f77149e2a416ca3b8e9aa1a32e69fb2c8a0fa46f7e86a456ec0a5f0d7d558ad385c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1169
1
+ 3.0.1187
@@ -682,8 +682,8 @@ module TencentCloud
682
682
 
683
683
  attr_accessor :Platform, :Name, :Owner, :Category, :Mode, :AspectRatio, :Description, :SwitcherProjectInput, :LiveStreamClipProjectInput, :VideoEditProjectInput, :VideoSegmentationProjectInput, :StreamConnectProjectInput, :RecordReplayProjectInput, :MediaCastProjectInput
684
684
  extend Gem::Deprecate
685
- deprecate :AspectRatio, :none, 2025, 11
686
- deprecate :AspectRatio=, :none, 2025, 11
685
+ deprecate :AspectRatio, :none, 2025, 12
686
+ deprecate :AspectRatio=, :none, 2025, 12
687
687
 
688
688
  def initialize(platform=nil, name=nil, owner=nil, category=nil, mode=nil, aspectratio=nil, description=nil, switcherprojectinput=nil, livestreamclipprojectinput=nil, videoeditprojectinput=nil, videosegmentationprojectinput=nil, streamconnectprojectinput=nil, recordreplayprojectinput=nil, mediacastprojectinput=nil)
689
689
  @Platform = platform
@@ -2616,8 +2616,8 @@ module TencentCloud
2616
2616
 
2617
2617
  attr_accessor :MediaKey, :Definition, :StorageId
2618
2618
  extend Gem::Deprecate
2619
- deprecate :Definition, :none, 2025, 11
2620
- deprecate :Definition=, :none, 2025, 11
2619
+ deprecate :Definition, :none, 2025, 12
2620
+ deprecate :Definition=, :none, 2025, 12
2621
2621
 
2622
2622
  def initialize(mediakey=nil, definition=nil, storageid=nil)
2623
2623
  @MediaKey = mediakey
@@ -3587,8 +3587,8 @@ module TencentCloud
3587
3587
 
3588
3588
  attr_accessor :MaterialId, :MaterialType, :Owner, :Name, :CreateTime, :UpdateTime, :ClassPath, :PresetTagSet, :TagSet, :PreviewUrl, :TagInfoSet
3589
3589
  extend Gem::Deprecate
3590
- deprecate :TagInfoSet, :none, 2025, 11
3591
- deprecate :TagInfoSet=, :none, 2025, 11
3590
+ deprecate :TagInfoSet, :none, 2025, 12
3591
+ deprecate :TagInfoSet=, :none, 2025, 12
3592
3592
 
3593
3593
  def initialize(materialid=nil, materialtype=nil, owner=nil, name=nil, createtime=nil, updatetime=nil, classpath=nil, presettagset=nil, tagset=nil, previewurl=nil, taginfoset=nil)
3594
3594
  @MaterialId = materialid
@@ -4377,15 +4377,22 @@ module TencentCloud
4377
4377
  # @param PreprocessOperation: 预处理操作。
4378
4378
  # 注:目前该功能暂不支持,请勿使用。
4379
4379
  # @type PreprocessOperation: :class:`Tencentcloud::Cme.v20191029.models.MediaPreprocessOperation`
4380
+ # @param MuteSwitch: 静音开关,仅对视频类型媒体生效。取值有:
4381
+ # <li>ON:视频媒体开启静音,该段媒体在导出中会屏蔽音频;</li>
4382
+ # <li>OFF:视频媒体关闭静音;</li>
4380
4383
 
4381
- attr_accessor :MediaType, :MaterialId, :MediaUrl, :StartTimeOffset, :PreprocessOperation
4384
+ # 注:默认为 OFF,即不对视频媒体的音频做静音处理。
4385
+ # @type MuteSwitch: String
4382
4386
 
4383
- def initialize(mediatype=nil, materialid=nil, mediaurl=nil, starttimeoffset=nil, preprocessoperation=nil)
4387
+ attr_accessor :MediaType, :MaterialId, :MediaUrl, :StartTimeOffset, :PreprocessOperation, :MuteSwitch
4388
+
4389
+ def initialize(mediatype=nil, materialid=nil, mediaurl=nil, starttimeoffset=nil, preprocessoperation=nil, muteswitch=nil)
4384
4390
  @MediaType = mediatype
4385
4391
  @MaterialId = materialid
4386
4392
  @MediaUrl = mediaurl
4387
4393
  @StartTimeOffset = starttimeoffset
4388
4394
  @PreprocessOperation = preprocessoperation
4395
+ @MuteSwitch = muteswitch
4389
4396
  end
4390
4397
 
4391
4398
  def deserialize(params)
@@ -4397,6 +4404,7 @@ module TencentCloud
4397
4404
  @PreprocessOperation = MediaPreprocessOperation.new
4398
4405
  @PreprocessOperation.deserialize(params['PreprocessOperation'])
4399
4406
  end
4407
+ @MuteSwitch = params['MuteSwitch']
4400
4408
  end
4401
4409
  end
4402
4410
 
@@ -5645,8 +5653,8 @@ module TencentCloud
5645
5653
 
5646
5654
  attr_accessor :FileId, :MaterialId, :Operator, :OperationType, :Owner, :ClassPath, :TaskId, :SourceContext
5647
5655
  extend Gem::Deprecate
5648
- deprecate :Operator, :none, 2025, 11
5649
- deprecate :Operator=, :none, 2025, 11
5656
+ deprecate :Operator, :none, 2025, 12
5657
+ deprecate :Operator=, :none, 2025, 12
5650
5658
 
5651
5659
  def initialize(fileid=nil, materialid=nil, operator=nil, operationtype=nil, owner=nil, classpath=nil, taskid=nil, sourcecontext=nil)
5652
5660
  @FileId = fileid
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cme
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1169
4
+ version: 3.0.1187
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-19 00:00:00.000000000 Z
11
+ date: 2025-12-22 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-cme.rb
37
36
  - lib/v20191029/client.rb
38
37
  - lib/v20191029/models.rb
38
+ - lib/tencentcloud-sdk-cme.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: