tencentcloud-sdk-trtc 3.0.1198 → 3.0.1205
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/v20190722/models.rb +13 -5
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1819dca4b8272371dc261071e9ed8c77e3bbd712
|
|
4
|
+
data.tar.gz: 7a11d4b2550ef49488e7499547a25a772de86a46
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf4776bb0b3800ba63ca29511aa3a86fb605088bdb7071a32d1208bc80677d7d76afce0c56b4e8d04e6c48a2a9c397cf78c6eeb60b9863f6bda42be4606f13af
|
|
7
|
+
data.tar.gz: adceab3793dfe79693e3d9ac1ccac88e8b770772739808cea50beaf8977c6bab320977cdc49c8c4e4d4a2129851c8f291b3407d70fe370673c20bdcb3d055e05
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1205
|
data/lib/v20190722/models.rb
CHANGED
|
@@ -4097,10 +4097,12 @@ module TencentCloud
|
|
|
4097
4097
|
# @type RenderMode: Integer
|
|
4098
4098
|
# @param MaxResolutionUserAlign: 屏幕分享模板有效。设置为1时代表大画面居右,小画面居左布局。默认为0。
|
|
4099
4099
|
# @type MaxResolutionUserAlign: Integer
|
|
4100
|
+
# @param PureAudioDisableLayout: 控制房间内纯音频用户是否占据混流布局,只在混流录制,模板布局生效。true: 代表纯音频用户不占位,false: 代表纯音频用户占位(默认为false)。
|
|
4101
|
+
# @type PureAudioDisableLayout: Boolean
|
|
4100
4102
|
|
|
4101
|
-
attr_accessor :MixLayoutMode, :MixLayoutList, :BackGroundColor, :MaxResolutionUserId, :MediaId, :BackgroundImageUrl, :PlaceHolderMode, :BackgroundImageRenderMode, :DefaultSubBackgroundImage, :WaterMarkList, :RenderMode, :MaxResolutionUserAlign
|
|
4103
|
+
attr_accessor :MixLayoutMode, :MixLayoutList, :BackGroundColor, :MaxResolutionUserId, :MediaId, :BackgroundImageUrl, :PlaceHolderMode, :BackgroundImageRenderMode, :DefaultSubBackgroundImage, :WaterMarkList, :RenderMode, :MaxResolutionUserAlign, :PureAudioDisableLayout
|
|
4102
4104
|
|
|
4103
|
-
def initialize(mixlayoutmode=nil, mixlayoutlist=nil, backgroundcolor=nil, maxresolutionuserid=nil, mediaid=nil, backgroundimageurl=nil, placeholdermode=nil, backgroundimagerendermode=nil, defaultsubbackgroundimage=nil, watermarklist=nil, rendermode=nil, maxresolutionuseralign=nil)
|
|
4105
|
+
def initialize(mixlayoutmode=nil, mixlayoutlist=nil, backgroundcolor=nil, maxresolutionuserid=nil, mediaid=nil, backgroundimageurl=nil, placeholdermode=nil, backgroundimagerendermode=nil, defaultsubbackgroundimage=nil, watermarklist=nil, rendermode=nil, maxresolutionuseralign=nil, pureaudiodisablelayout=nil)
|
|
4104
4106
|
@MixLayoutMode = mixlayoutmode
|
|
4105
4107
|
@MixLayoutList = mixlayoutlist
|
|
4106
4108
|
@BackGroundColor = backgroundcolor
|
|
@@ -4113,6 +4115,7 @@ module TencentCloud
|
|
|
4113
4115
|
@WaterMarkList = watermarklist
|
|
4114
4116
|
@RenderMode = rendermode
|
|
4115
4117
|
@MaxResolutionUserAlign = maxresolutionuseralign
|
|
4118
|
+
@PureAudioDisableLayout = pureaudiodisablelayout
|
|
4116
4119
|
end
|
|
4117
4120
|
|
|
4118
4121
|
def deserialize(params)
|
|
@@ -4142,6 +4145,7 @@ module TencentCloud
|
|
|
4142
4145
|
end
|
|
4143
4146
|
@RenderMode = params['RenderMode']
|
|
4144
4147
|
@MaxResolutionUserAlign = params['MaxResolutionUserAlign']
|
|
4148
|
+
@PureAudioDisableLayout = params['PureAudioDisableLayout']
|
|
4145
4149
|
end
|
|
4146
4150
|
end
|
|
4147
4151
|
|
|
@@ -4842,10 +4846,12 @@ module TencentCloud
|
|
|
4842
4846
|
# @type MediaId: Integer
|
|
4843
4847
|
# @param FillType: 上行视频停止时,录制的补帧类型,0:补最后一帧 1:补黑帧
|
|
4844
4848
|
# @type FillType: Integer
|
|
4849
|
+
# @param SubscribeAbility: 控制录制任务是否订阅混流回推机器人,1是订阅,0是不订阅,默认是0。如果是混流录制任务,建议用订阅白名单控制订阅用户,防止同时订阅混流回推机器人和上行主播,以避免混音效果。
|
|
4850
|
+
# @type SubscribeAbility: Integer
|
|
4845
4851
|
|
|
4846
|
-
attr_accessor :RecordMode, :MaxIdleTime, :StreamType, :SubscribeStreamUserIds, :OutputFormat, :AvMerge, :MaxMediaFileDuration, :MediaId, :FillType
|
|
4852
|
+
attr_accessor :RecordMode, :MaxIdleTime, :StreamType, :SubscribeStreamUserIds, :OutputFormat, :AvMerge, :MaxMediaFileDuration, :MediaId, :FillType, :SubscribeAbility
|
|
4847
4853
|
|
|
4848
|
-
def initialize(recordmode=nil, maxidletime=nil, streamtype=nil, subscribestreamuserids=nil, outputformat=nil, avmerge=nil, maxmediafileduration=nil, mediaid=nil, filltype=nil)
|
|
4854
|
+
def initialize(recordmode=nil, maxidletime=nil, streamtype=nil, subscribestreamuserids=nil, outputformat=nil, avmerge=nil, maxmediafileduration=nil, mediaid=nil, filltype=nil, subscribeability=nil)
|
|
4849
4855
|
@RecordMode = recordmode
|
|
4850
4856
|
@MaxIdleTime = maxidletime
|
|
4851
4857
|
@StreamType = streamtype
|
|
@@ -4855,6 +4861,7 @@ module TencentCloud
|
|
|
4855
4861
|
@MaxMediaFileDuration = maxmediafileduration
|
|
4856
4862
|
@MediaId = mediaid
|
|
4857
4863
|
@FillType = filltype
|
|
4864
|
+
@SubscribeAbility = subscribeability
|
|
4858
4865
|
end
|
|
4859
4866
|
|
|
4860
4867
|
def deserialize(params)
|
|
@@ -4870,6 +4877,7 @@ module TencentCloud
|
|
|
4870
4877
|
@MaxMediaFileDuration = params['MaxMediaFileDuration']
|
|
4871
4878
|
@MediaId = params['MediaId']
|
|
4872
4879
|
@FillType = params['FillType']
|
|
4880
|
+
@SubscribeAbility = params['SubscribeAbility']
|
|
4873
4881
|
end
|
|
4874
4882
|
end
|
|
4875
4883
|
|
|
@@ -6572,7 +6580,7 @@ module TencentCloud
|
|
|
6572
6580
|
# @param ClassId: 分类ID,用于对媒体进行分类管理,可通过 创建分类 接口,创建分类,获得分类 ID。
|
|
6573
6581
|
# 默认值:0,表示其他分类。
|
|
6574
6582
|
# @type ClassId: Integer
|
|
6575
|
-
# @param SubAppId:
|
|
6583
|
+
# @param SubAppId: 点播子应用 ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。注意:不建议填写“托管类型”的点播子应用ID,只能填写“标准类型”的点播子应用ID,否则会导致无法通过点播域名正常播放视频。
|
|
6576
6584
|
# @type SubAppId: Integer
|
|
6577
6585
|
# @param SessionContext: 任务流上下文,任务完成回调时透传。
|
|
6578
6586
|
# @type SessionContext: String
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-trtc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1205
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-01-
|
|
11
|
+
date: 2026-01-21 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-trtc.rb
|
|
37
36
|
- lib/v20190722/client.rb
|
|
38
37
|
- lib/v20190722/models.rb
|
|
38
|
+
- lib/tencentcloud-sdk-trtc.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|