tencentcloud-sdk-trtc 3.0.408 → 3.0.410
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 +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 62e0c1aa882ba4deaa638e9e78794445a363175c
|
4
|
+
data.tar.gz: 4070c97dcc8faf21c10b7c0d06a313fb6084aeca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 167bca34e214343142dc0c1bdef1c58cd136739d9f465071f73f17661e61e7b9c3c0f8b3b1145f53cb633584f7dc5faf919a11a01b5e6789e29625fbd5365933
|
7
|
+
data.tar.gz: 63c80754695904009168bb76bf600b505e4bb1faf0566340e90179a8963ed2f33b1eb0a9a56560aad7a860754fb5d94856bc1c39fe614b37d4be0b4ffb3631f9
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.410
|
data/lib/v20190722/models.rb
CHANGED
@@ -1866,17 +1866,20 @@ module TencentCloud
|
|
1866
1866
|
# @type StreamType: Integer
|
1867
1867
|
# @param SubscribeStreamUserIds: 指定订阅流白名单或者黑名单。
|
1868
1868
|
# @type SubscribeStreamUserIds: :class:`Tencentcloud::Trtc.v20190722.models.SubscribeStreamUserIds`
|
1869
|
-
# @param OutputFormat:
|
1869
|
+
# @param OutputFormat: 输出文件的格式,上传到云点播时此参数无效,存储到云点播时请关注TencentVod内的MediaType参数。0:(默认)输出文件为hls格式。1:输出文件格式为hls+mp4(hls录制完成后转mp4文件)。
|
1870
1870
|
# @type OutputFormat: Integer
|
1871
|
+
# @param AvMerge: 单流录制模式下,用户的音视频是否合并,0:单流音视频不合并(默认)。1:单流音视频合并成一个ts。混流录制此参数无需设置,默认音视频合并。
|
1872
|
+
# @type AvMerge: Integer
|
1871
1873
|
|
1872
|
-
attr_accessor :RecordMode, :MaxIdleTime, :StreamType, :SubscribeStreamUserIds, :OutputFormat
|
1874
|
+
attr_accessor :RecordMode, :MaxIdleTime, :StreamType, :SubscribeStreamUserIds, :OutputFormat, :AvMerge
|
1873
1875
|
|
1874
|
-
def initialize(recordmode=nil, maxidletime=nil, streamtype=nil, subscribestreamuserids=nil, outputformat=nil)
|
1876
|
+
def initialize(recordmode=nil, maxidletime=nil, streamtype=nil, subscribestreamuserids=nil, outputformat=nil, avmerge=nil)
|
1875
1877
|
@RecordMode = recordmode
|
1876
1878
|
@MaxIdleTime = maxidletime
|
1877
1879
|
@StreamType = streamtype
|
1878
1880
|
@SubscribeStreamUserIds = subscribestreamuserids
|
1879
1881
|
@OutputFormat = outputformat
|
1882
|
+
@AvMerge = avmerge
|
1880
1883
|
end
|
1881
1884
|
|
1882
1885
|
def deserialize(params)
|
@@ -1888,6 +1891,7 @@ module TencentCloud
|
|
1888
1891
|
@SubscribeStreamUserIds.deserialize(params['SubscribeStreamUserIds'])
|
1889
1892
|
end
|
1890
1893
|
@OutputFormat = params['OutputFormat']
|
1894
|
+
@AvMerge = params['AvMerge']
|
1891
1895
|
end
|
1892
1896
|
end
|
1893
1897
|
|
@@ -2508,10 +2512,12 @@ module TencentCloud
|
|
2508
2512
|
# @type SessionContext: String
|
2509
2513
|
# @param SourceContext: 上传上下文,上传完成回调时透传。
|
2510
2514
|
# @type SourceContext: String
|
2515
|
+
# @param MediaType: 上传到vod平台的录制文件格式类型,0:mp4(默认), 1: hls。
|
2516
|
+
# @type MediaType: Integer
|
2511
2517
|
|
2512
|
-
attr_accessor :Procedure, :ExpireTime, :StorageRegion, :ClassId, :SubAppId, :SessionContext, :SourceContext
|
2518
|
+
attr_accessor :Procedure, :ExpireTime, :StorageRegion, :ClassId, :SubAppId, :SessionContext, :SourceContext, :MediaType
|
2513
2519
|
|
2514
|
-
def initialize(procedure=nil, expiretime=nil, storageregion=nil, classid=nil, subappid=nil, sessioncontext=nil, sourcecontext=nil)
|
2520
|
+
def initialize(procedure=nil, expiretime=nil, storageregion=nil, classid=nil, subappid=nil, sessioncontext=nil, sourcecontext=nil, mediatype=nil)
|
2515
2521
|
@Procedure = procedure
|
2516
2522
|
@ExpireTime = expiretime
|
2517
2523
|
@StorageRegion = storageregion
|
@@ -2519,6 +2525,7 @@ module TencentCloud
|
|
2519
2525
|
@SubAppId = subappid
|
2520
2526
|
@SessionContext = sessioncontext
|
2521
2527
|
@SourceContext = sourcecontext
|
2528
|
+
@MediaType = mediatype
|
2522
2529
|
end
|
2523
2530
|
|
2524
2531
|
def deserialize(params)
|
@@ -2529,6 +2536,7 @@ module TencentCloud
|
|
2529
2536
|
@SubAppId = params['SubAppId']
|
2530
2537
|
@SessionContext = params['SessionContext']
|
2531
2538
|
@SourceContext = params['SourceContext']
|
2539
|
+
@MediaType = params['MediaType']
|
2532
2540
|
end
|
2533
2541
|
end
|
2534
2542
|
|
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.410
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-09-
|
11
|
+
date: 2022-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|