tencentcloud-sdk-trtc 3.0.944 → 3.0.945
Sign up to get free protection for your applications and to get access to all the features.
- 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: 0f1cdab56bbff41c90c2de997816ace85ed17c72
|
4
|
+
data.tar.gz: f1718e17639cadda73b3d1cde5a415d0670e0fb1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e33da72ff7b6b0dd8201cd31fc5bc0ed99695518251967849049885b2081194efa167d92891c6724f7c4e5f9401817985ba35e3ec33fdd69fb967232c2a1d78f
|
7
|
+
data.tar.gz: 3520da3860baa191c5c438822770d1e265333e0485d88f5cb4aa61c10a14b6d5210c107e35f5d9f73a95485f0c505262f87bd065043e96423b73b9606dba032a
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.945
|
data/lib/v20190722/models.rb
CHANGED
@@ -4664,8 +4664,10 @@ module TencentCloud
|
|
4664
4664
|
# @type RepeatNum: Integer
|
4665
4665
|
# @param MaxDuration: 循环播放最大时长,仅支持RepeatNum设置-1时生效,取值范围[1, 10080],单位分钟。
|
4666
4666
|
# @type MaxDuration: Integer
|
4667
|
+
# @param Volume: 音量,取值范围[0, 100],默认100,表示原音量。
|
4668
|
+
# @type Volume: Integer
|
4667
4669
|
|
4668
|
-
attr_accessor :SdkAppId, :RoomId, :RoomIdType, :UserId, :UserSig, :StreamUrl, :PrivateMapKey, :VideoEncodeParams, :AudioEncodeParams, :SourceUrl, :SeekSecond, :AutoPush, :RepeatNum, :MaxDuration
|
4670
|
+
attr_accessor :SdkAppId, :RoomId, :RoomIdType, :UserId, :UserSig, :StreamUrl, :PrivateMapKey, :VideoEncodeParams, :AudioEncodeParams, :SourceUrl, :SeekSecond, :AutoPush, :RepeatNum, :MaxDuration, :Volume
|
4669
4671
|
extend Gem::Deprecate
|
4670
4672
|
deprecate :VideoEncodeParams, :none, 2024, 11
|
4671
4673
|
deprecate :VideoEncodeParams=, :none, 2024, 11
|
@@ -4674,7 +4676,7 @@ module TencentCloud
|
|
4674
4676
|
deprecate :SourceUrl, :none, 2024, 11
|
4675
4677
|
deprecate :SourceUrl=, :none, 2024, 11
|
4676
4678
|
|
4677
|
-
def initialize(sdkappid=nil, roomid=nil, roomidtype=nil, userid=nil, usersig=nil, streamurl=nil, privatemapkey=nil, videoencodeparams=nil, audioencodeparams=nil, sourceurl=nil, seeksecond=nil, autopush=nil, repeatnum=nil, maxduration=nil)
|
4679
|
+
def initialize(sdkappid=nil, roomid=nil, roomidtype=nil, userid=nil, usersig=nil, streamurl=nil, privatemapkey=nil, videoencodeparams=nil, audioencodeparams=nil, sourceurl=nil, seeksecond=nil, autopush=nil, repeatnum=nil, maxduration=nil, volume=nil)
|
4678
4680
|
@SdkAppId = sdkappid
|
4679
4681
|
@RoomId = roomid
|
4680
4682
|
@RoomIdType = roomidtype
|
@@ -4689,6 +4691,7 @@ module TencentCloud
|
|
4689
4691
|
@AutoPush = autopush
|
4690
4692
|
@RepeatNum = repeatnum
|
4691
4693
|
@MaxDuration = maxduration
|
4694
|
+
@Volume = volume
|
4692
4695
|
end
|
4693
4696
|
|
4694
4697
|
def deserialize(params)
|
@@ -4712,6 +4715,7 @@ module TencentCloud
|
|
4712
4715
|
@AutoPush = params['AutoPush']
|
4713
4716
|
@RepeatNum = params['RepeatNum']
|
4714
4717
|
@MaxDuration = params['MaxDuration']
|
4718
|
+
@Volume = params['Volume']
|
4715
4719
|
end
|
4716
4720
|
end
|
4717
4721
|
|
@@ -5525,21 +5529,25 @@ module TencentCloud
|
|
5525
5529
|
# @type SdkAppId: Integer
|
5526
5530
|
# @param TaskId: 任务的唯一Id,在启动任务成功后会返回。
|
5527
5531
|
# @type TaskId: String
|
5528
|
-
# @param StreamUrl: 源流URL
|
5532
|
+
# @param StreamUrl: 源流URL。
|
5529
5533
|
# @type StreamUrl: String
|
5534
|
+
# @param Volume: 音量,取值范围[0, 100],默认100,表示原音量。
|
5535
|
+
# @type Volume: Integer
|
5530
5536
|
|
5531
|
-
attr_accessor :SdkAppId, :TaskId, :StreamUrl
|
5537
|
+
attr_accessor :SdkAppId, :TaskId, :StreamUrl, :Volume
|
5532
5538
|
|
5533
|
-
def initialize(sdkappid=nil, taskid=nil, streamurl=nil)
|
5539
|
+
def initialize(sdkappid=nil, taskid=nil, streamurl=nil, volume=nil)
|
5534
5540
|
@SdkAppId = sdkappid
|
5535
5541
|
@TaskId = taskid
|
5536
5542
|
@StreamUrl = streamurl
|
5543
|
+
@Volume = volume
|
5537
5544
|
end
|
5538
5545
|
|
5539
5546
|
def deserialize(params)
|
5540
5547
|
@SdkAppId = params['SdkAppId']
|
5541
5548
|
@TaskId = params['TaskId']
|
5542
5549
|
@StreamUrl = params['StreamUrl']
|
5550
|
+
@Volume = params['Volume']
|
5543
5551
|
end
|
5544
5552
|
end
|
5545
5553
|
|
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.945
|
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-11-
|
11
|
+
date: 2024-11-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|