tencentcloud-sdk-trtc 3.0.371 → 3.0.379

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7a578716c35b94b780e727c1d4308ff900065be8
4
- data.tar.gz: 477900f0dc585eeff0e60e66170c99fbaa8f0d5e
3
+ metadata.gz: 7fc060804b0898f46a73da44fea369feb3bdd90f
4
+ data.tar.gz: 98bf1332470dbfb7fb54941e7269fb9593132bff
5
5
  SHA512:
6
- metadata.gz: 9bebf3bb098ccd5160117a01e9e13703f056c014d91ed90a1541b91ef3fd2b28e7c2bf933d2ede4ec920b09cae014dffa0b8cf30744cb1a686619f3df2185add
7
- data.tar.gz: 03e59b543f967601ef428f7eebedbcf3d120c88423c9f8b427032614dbaa9b25045031985b95429d30f6204a9852e02498329b5b248d9910aae5cf1ec43e240e
6
+ metadata.gz: 46458bd02c83ebc5f3540cef9faff42559db8a93573190921a816ca0df784a3fb19af03c8ced94b3d725aee0bebf156775aed4c0ae35b8016a8b293ec1005e23
7
+ data.tar.gz: 7ca4082faa0eb226f42883f317324acedf2a240041ab53794fbb822e6c3c4d1348c384277ca2d11f4a87476c77ac8f9cefc435618977874e1869eb7313aad008
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.371
1
+ 3.0.379
@@ -29,6 +29,41 @@ module TencentCloud
29
29
  end
30
30
 
31
31
 
32
+ # ###接口说明:
33
+ # 启动云端录制功能,完成房间内的音视频录制,并上传到指定的云存储。您可以通过此 API 接口把TRTC 房间中的每一路音视频流做单独的录制有或者多路视频画面混流一路。
34
+
35
+ # ###您可以通过此接口实现如下目标:
36
+ # * 指定订阅流参数(RecordParams)来指定需要录制的主播的黑名单或者白名单。
37
+ # * 指定第三方存储的参数(StorageParams)来指定上传到您希望的云存储
38
+ # * 指定混流模式下的音视频转码详细参数(MixTranscodeParams),包括视频分辨率、视频码率、视频帧率、以及声音质量等
39
+ # * 指定混流模式各路画面的位置和布局或者也可以指定自动模板的方式来配置。
40
+
41
+ # ###关键名词:
42
+ # * 单流录制:分别录制房间的订阅UserId的音频和视频。录制服务会实时将录制文件(M3U8/TS)上传至云存储。
43
+ # * 混流录制:将房间内订阅UserId的音视频混录成一个音视频文件,并将录制文件(M3U8/TS)上传至云存储。
44
+
45
+ # @param request: Request instance for CreateCloudRecording.
46
+ # @type request: :class:`Tencentcloud::trtc::V20190722::CreateCloudRecordingRequest`
47
+ # @rtype: :class:`Tencentcloud::trtc::V20190722::CreateCloudRecordingResponse`
48
+ def CreateCloudRecording(request)
49
+ body = send_request('CreateCloudRecording', request.serialize)
50
+ response = JSON.parse(body)
51
+ if response['Response'].key?('Error') == false
52
+ model = CreateCloudRecordingResponse.new
53
+ model.deserialize(response['Response'])
54
+ model
55
+ else
56
+ code = response['Response']['Error']['Code']
57
+ message = response['Response']['Error']['Message']
58
+ reqid = response['Response']['RequestId']
59
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
60
+ end
61
+ rescue TencentCloud::Common::TencentCloudSDKException => e
62
+ raise e
63
+ rescue StandardError => e
64
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
65
+ end
66
+
32
67
  # 如果您需要在 [云端混流转码](https://cloud.tencent.com/document/product/647/16827) 时频繁新增自定义背景图或水印,可通过此接口上传新的图片素材。无需频繁新增图片的场景,建议直接在 [控制台 > 应用管理 > 素材管理](https://cloud.tencent.com/document/product/647/50769) 中操作。
33
68
 
34
69
  # @param request: Request instance for CreatePicture.
@@ -53,6 +88,30 @@ module TencentCloud
53
88
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
54
89
  end
55
90
 
91
+ # 成功开启录制后,可以使用此接口来停止录制任务。仅在录制任务进行时有效,录制退出后更新将会返回错误。停止录制成功后不代表文件全部传输完成,如果未完成后台将会继续上传文件,成功后通过事件回调通知客户文件全部传输完成状态。
92
+
93
+ # @param request: Request instance for DeleteCloudRecording.
94
+ # @type request: :class:`Tencentcloud::trtc::V20190722::DeleteCloudRecordingRequest`
95
+ # @rtype: :class:`Tencentcloud::trtc::V20190722::DeleteCloudRecordingResponse`
96
+ def DeleteCloudRecording(request)
97
+ body = send_request('DeleteCloudRecording', request.serialize)
98
+ response = JSON.parse(body)
99
+ if response['Response'].key?('Error') == false
100
+ model = DeleteCloudRecordingResponse.new
101
+ model.deserialize(response['Response'])
102
+ model
103
+ else
104
+ code = response['Response']['Error']['Code']
105
+ message = response['Response']['Error']['Message']
106
+ reqid = response['Response']['RequestId']
107
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
108
+ end
109
+ rescue TencentCloud::Common::TencentCloudSDKException => e
110
+ raise e
111
+ rescue StandardError => e
112
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
113
+ end
114
+
56
115
  # 如果您需要在 [云端混流转码](https://cloud.tencent.com/document/product/647/16827) 时频繁删除自定义背景图或水印,可通过此接口删除已上传的图片。无需频繁删除图片的场景,建议直接在 [控制台 > 应用管理 > 素材管理](https://cloud.tencent.com/document/product/647/50769) 中操作。
57
116
 
58
117
  # @param request: Request instance for DeletePicture.
@@ -152,6 +211,30 @@ module TencentCloud
152
211
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
153
212
  end
154
213
 
214
+ # 成功开启录制后,可以使用此接口来查询录制状态。仅在录制任务进行时有效,录制退出后查询将会返回错误。
215
+
216
+ # @param request: Request instance for DescribeCloudRecording.
217
+ # @type request: :class:`Tencentcloud::trtc::V20190722::DescribeCloudRecordingRequest`
218
+ # @rtype: :class:`Tencentcloud::trtc::V20190722::DescribeCloudRecordingResponse`
219
+ def DescribeCloudRecording(request)
220
+ body = send_request('DescribeCloudRecording', request.serialize)
221
+ response = JSON.parse(body)
222
+ if response['Response'].key?('Error') == false
223
+ model = DescribeCloudRecordingResponse.new
224
+ model.deserialize(response['Response'])
225
+ model
226
+ else
227
+ code = response['Response']['Error']['Code']
228
+ message = response['Response']['Error']['Message']
229
+ reqid = response['Response']['RequestId']
230
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
231
+ end
232
+ rescue TencentCloud::Common::TencentCloudSDKException => e
233
+ raise e
234
+ rescue StandardError => e
235
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
236
+ end
237
+
155
238
  # 查询用户某次通话内的进退房,视频开关等详细事件。可查询14天内数据。
156
239
 
157
240
  # @param request: Request instance for DescribeDetailEvent.
@@ -526,6 +609,30 @@ module TencentCloud
526
609
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
527
610
  end
528
611
 
612
+ # 成功开启录制后,可以使用此接口来更新录制任务。仅在录制任务进行时有效,录制退出后更新将会返回错误。更新操作是全量覆盖,并不是增量更新的模式,也就是说每次更新都需要携带全量的信息。
613
+
614
+ # @param request: Request instance for ModifyCloudRecording.
615
+ # @type request: :class:`Tencentcloud::trtc::V20190722::ModifyCloudRecordingRequest`
616
+ # @rtype: :class:`Tencentcloud::trtc::V20190722::ModifyCloudRecordingResponse`
617
+ def ModifyCloudRecording(request)
618
+ body = send_request('ModifyCloudRecording', request.serialize)
619
+ response = JSON.parse(body)
620
+ if response['Response'].key?('Error') == false
621
+ model = ModifyCloudRecordingResponse.new
622
+ model.deserialize(response['Response'])
623
+ model
624
+ else
625
+ code = response['Response']['Error']['Code']
626
+ message = response['Response']['Error']['Message']
627
+ reqid = response['Response']['RequestId']
628
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
629
+ end
630
+ rescue TencentCloud::Common::TencentCloudSDKException => e
631
+ raise e
632
+ rescue StandardError => e
633
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
634
+ end
635
+
529
636
  # 如果您需要在 [云端混流转码](https://cloud.tencent.com/document/product/647/16827) 时频繁修改自定义背景图或水印素材,可通过此接口修改已上传的图片。无需频繁修改图片素材的场景,建议直接在 [控制台 > 应用管理 > 素材管理](https://cloud.tencent.com/document/product/647/50769) 中操作。
530
637
 
531
638
  # @param request: Request instance for ModifyPicture.
@@ -77,6 +77,181 @@ module TencentCloud
77
77
  end
78
78
  end
79
79
 
80
+ # 录制音频转码参数。
81
+ class AudioParams < TencentCloud::Common::AbstractModel
82
+ # @param SampleRate: 音频采样率:
83
+ # 1:48000Hz(默认);
84
+ # 2:44100Hz
85
+ # 3:16000Hz。
86
+ # @type SampleRate: Integer
87
+ # @param Channel: 声道数:
88
+ # 1:单声道;
89
+ # 2:双声道(默认)。
90
+ # @type Channel: Integer
91
+ # @param BitRate: 音频码率: 取值范围[32000, 128000] ,单位bps,默认64000bps。
92
+ # @type BitRate: Integer
93
+
94
+ attr_accessor :SampleRate, :Channel, :BitRate
95
+
96
+ def initialize(samplerate=nil, channel=nil, bitrate=nil)
97
+ @SampleRate = samplerate
98
+ @Channel = channel
99
+ @BitRate = bitrate
100
+ end
101
+
102
+ def deserialize(params)
103
+ @SampleRate = params['SampleRate']
104
+ @Channel = params['Channel']
105
+ @BitRate = params['BitRate']
106
+ end
107
+ end
108
+
109
+ # 第三方云存储的账号信息。
110
+ class CloudStorage < TencentCloud::Common::AbstractModel
111
+ # @param Vendor: 第三方云储存的供应商:
112
+ # 0:腾讯云存储 COS,暂不支持其他家。
113
+ # @type Vendor: Integer
114
+ # @param Region: 第三方云存储的地域信息。
115
+ # @type Region: String
116
+ # @param Bucket: 第三方存储桶信息。
117
+ # @type Bucket: String
118
+ # @param AccessKey: 第三方存储的access_key账号信息。
119
+ # @type AccessKey: String
120
+ # @param SecretKey: 第三方存储的secret_key账号信息。
121
+ # @type SecretKey: String
122
+ # @param FileNamePrefix: 第三方云存储bucket 的指定位置,由字符串数组组成。合法的字符串范围a~z,A~Z,0~9,'_'和'-',举个例子,录制文件xxx.m3u8在 ["prefix1", "prefix2"]作用下,会变成prefix1/prefix2/TaskId/xxx.m3u8。
123
+ # @type FileNamePrefix: Array
124
+
125
+ attr_accessor :Vendor, :Region, :Bucket, :AccessKey, :SecretKey, :FileNamePrefix
126
+
127
+ def initialize(vendor=nil, region=nil, bucket=nil, accesskey=nil, secretkey=nil, filenameprefix=nil)
128
+ @Vendor = vendor
129
+ @Region = region
130
+ @Bucket = bucket
131
+ @AccessKey = accesskey
132
+ @SecretKey = secretkey
133
+ @FileNamePrefix = filenameprefix
134
+ end
135
+
136
+ def deserialize(params)
137
+ @Vendor = params['Vendor']
138
+ @Region = params['Region']
139
+ @Bucket = params['Bucket']
140
+ @AccessKey = params['AccessKey']
141
+ @SecretKey = params['SecretKey']
142
+ @FileNamePrefix = params['FileNamePrefix']
143
+ end
144
+ end
145
+
146
+ # 点播相关参数。
147
+ class CloudVod < TencentCloud::Common::AbstractModel
148
+ # @param TencentVod: 腾讯云点播相关参数。
149
+ # @type TencentVod: :class:`Tencentcloud::Trtc.v20190722.models.TencentVod`
150
+
151
+ attr_accessor :TencentVod
152
+
153
+ def initialize(tencentvod=nil)
154
+ @TencentVod = tencentvod
155
+ end
156
+
157
+ def deserialize(params)
158
+ unless params['TencentVod'].nil?
159
+ @TencentVod = TencentVod.new
160
+ @TencentVod.deserialize(params['TencentVod'])
161
+ end
162
+ end
163
+ end
164
+
165
+ # CreateCloudRecording请求参数结构体
166
+ class CreateCloudRecordingRequest < TencentCloud::Common::AbstractModel
167
+ # @param SdkAppId: TRTC的[SdkAppId](https://cloud.tencent.com/document/product/647/46351#sdkappid),和录制的房间所对应的SdkAppId相同。
168
+ # @type SdkAppId: Integer
169
+ # @param RoomId: TRTC的[RoomId](https://cloud.tencent.com/document/product/647/46351#roomid),录制的TRTC房间所对应的RoomId。
170
+ # @type RoomId: String
171
+ # @param UserId: 录制服务在TRTC房间使用的[UserId](https://cloud.tencent.com/document/product/647/46351#userid),注意这个userId不能与其他TRTC或者录制服务等已经使用的UserId重复,建议可以把房间ID作为userId的标识的一部分。
172
+ # @type UserId: String
173
+ # @param UserSig: 云端录制加入房间的用户签名,当前 UserId 对应的验证签名,相当于登录密码,具体计算方法请参考TRTC计算[UserSig](https://cloud.tencent.com/document/product/647/45910#UserSig)的方案。
174
+ # @type UserSig: String
175
+ # @param RecordParams: 云端录制控制参数。
176
+ # @type RecordParams: :class:`Tencentcloud::Trtc.v20190722.models.RecordParams`
177
+ # @param StorageParams: 云端录制文件上传到云存储的参数。
178
+ # @type StorageParams: :class:`Tencentcloud::Trtc.v20190722.models.StorageParams`
179
+ # @param RoomIdType: TRTC房间号的类型,必须和录制的房间所对应的RoomId类型相同:
180
+ # 0: 字符串类型的RoomId
181
+ # 1: 32位整型的RoomId(默认)
182
+ # @type RoomIdType: Integer
183
+ # @param MixTranscodeParams: 混流的转码参数,录制模式为混流的时候可以设置。
184
+ # @type MixTranscodeParams: :class:`Tencentcloud::Trtc.v20190722.models.MixTranscodeParams`
185
+ # @param MixLayoutParams: 混流的布局参数,录制模式为混流的时候可以设置。
186
+ # @type MixLayoutParams: :class:`Tencentcloud::Trtc.v20190722.models.MixLayoutParams`
187
+ # @param ResourceExpiredHour: 接口可以调用的时效性,从成功开启录制并获得任务ID后开始计算,超时后无法调用查询、更新和停止等接口,但是录制任务不会停止。 参数的单位是小时,默认72小时(3天),最大可设置720小时(30天),最小设置6小时。举例说明:如果不设置该参数,那么开始录制成功后,查询、更新和停止录制的调用时效为72个小时。
188
+ # @type ResourceExpiredHour: Integer
189
+ # @param PrivateMapKey: TRTC房间权限加密串,只有在TRTC控制台启用了高级权限控制的时候需要携带,在TRTC控制台如果开启高级权限控制后,TRTC 的后台服务系统会校验一个叫做 [PrivateMapKey](https://cloud.tencent.com/document/product/647/32240) 的“权限票据”,权限票据中包含了一个加密后的 RoomId 和一个加密后的“权限位列表”。由于 PrivateMapKey 中包含 RoomId,所以只提供了 UserSig 没有提供 PrivateMapKey 时,并不能进入指定的房间。
190
+ # @type PrivateMapKey: String
191
+
192
+ attr_accessor :SdkAppId, :RoomId, :UserId, :UserSig, :RecordParams, :StorageParams, :RoomIdType, :MixTranscodeParams, :MixLayoutParams, :ResourceExpiredHour, :PrivateMapKey
193
+
194
+ def initialize(sdkappid=nil, roomid=nil, userid=nil, usersig=nil, recordparams=nil, storageparams=nil, roomidtype=nil, mixtranscodeparams=nil, mixlayoutparams=nil, resourceexpiredhour=nil, privatemapkey=nil)
195
+ @SdkAppId = sdkappid
196
+ @RoomId = roomid
197
+ @UserId = userid
198
+ @UserSig = usersig
199
+ @RecordParams = recordparams
200
+ @StorageParams = storageparams
201
+ @RoomIdType = roomidtype
202
+ @MixTranscodeParams = mixtranscodeparams
203
+ @MixLayoutParams = mixlayoutparams
204
+ @ResourceExpiredHour = resourceexpiredhour
205
+ @PrivateMapKey = privatemapkey
206
+ end
207
+
208
+ def deserialize(params)
209
+ @SdkAppId = params['SdkAppId']
210
+ @RoomId = params['RoomId']
211
+ @UserId = params['UserId']
212
+ @UserSig = params['UserSig']
213
+ unless params['RecordParams'].nil?
214
+ @RecordParams = RecordParams.new
215
+ @RecordParams.deserialize(params['RecordParams'])
216
+ end
217
+ unless params['StorageParams'].nil?
218
+ @StorageParams = StorageParams.new
219
+ @StorageParams.deserialize(params['StorageParams'])
220
+ end
221
+ @RoomIdType = params['RoomIdType']
222
+ unless params['MixTranscodeParams'].nil?
223
+ @MixTranscodeParams = MixTranscodeParams.new
224
+ @MixTranscodeParams.deserialize(params['MixTranscodeParams'])
225
+ end
226
+ unless params['MixLayoutParams'].nil?
227
+ @MixLayoutParams = MixLayoutParams.new
228
+ @MixLayoutParams.deserialize(params['MixLayoutParams'])
229
+ end
230
+ @ResourceExpiredHour = params['ResourceExpiredHour']
231
+ @PrivateMapKey = params['PrivateMapKey']
232
+ end
233
+ end
234
+
235
+ # CreateCloudRecording返回参数结构体
236
+ class CreateCloudRecordingResponse < TencentCloud::Common::AbstractModel
237
+ # @param TaskId: 云录制服务分配的任务 ID。任务 ID 是对一次录制生命周期过程的唯一标识,结束录制时会失去意义。任务 ID需要业务保存下来,作为下次针对这个录制任务操作的参数。
238
+ # @type TaskId: String
239
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
240
+ # @type RequestId: String
241
+
242
+ attr_accessor :TaskId, :RequestId
243
+
244
+ def initialize(taskid=nil, requestid=nil)
245
+ @TaskId = taskid
246
+ @RequestId = requestid
247
+ end
248
+
249
+ def deserialize(params)
250
+ @TaskId = params['TaskId']
251
+ @RequestId = params['RequestId']
252
+ end
253
+ end
254
+
80
255
  # CreatePicture请求参数结构体
81
256
  class CreatePictureRequest < TencentCloud::Common::AbstractModel
82
257
  # @param SdkAppId: 应用id
@@ -137,6 +312,46 @@ module TencentCloud
137
312
  end
138
313
  end
139
314
 
315
+ # DeleteCloudRecording请求参数结构体
316
+ class DeleteCloudRecordingRequest < TencentCloud::Common::AbstractModel
317
+ # @param SdkAppId: TRTC的SDKAppId,和录制的房间所对应的SDKAppId相同。
318
+ # @type SdkAppId: Integer
319
+ # @param TaskId: 录制任务的唯一Id,在启动录制成功后会返回。
320
+ # @type TaskId: String
321
+
322
+ attr_accessor :SdkAppId, :TaskId
323
+
324
+ def initialize(sdkappid=nil, taskid=nil)
325
+ @SdkAppId = sdkappid
326
+ @TaskId = taskid
327
+ end
328
+
329
+ def deserialize(params)
330
+ @SdkAppId = params['SdkAppId']
331
+ @TaskId = params['TaskId']
332
+ end
333
+ end
334
+
335
+ # DeleteCloudRecording返回参数结构体
336
+ class DeleteCloudRecordingResponse < TencentCloud::Common::AbstractModel
337
+ # @param TaskId: 云录制服务分配的任务 ID。任务 ID 是对一次录制生命周期过程的唯一标识,结束录制时会失去意义。
338
+ # @type TaskId: String
339
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
340
+ # @type RequestId: String
341
+
342
+ attr_accessor :TaskId, :RequestId
343
+
344
+ def initialize(taskid=nil, requestid=nil)
345
+ @TaskId = taskid
346
+ @RequestId = requestid
347
+ end
348
+
349
+ def deserialize(params)
350
+ @TaskId = params['TaskId']
351
+ @RequestId = params['RequestId']
352
+ end
353
+ end
354
+
140
355
  # DeletePicture请求参数结构体
141
356
  class DeletePictureRequest < TencentCloud::Common::AbstractModel
142
357
  # @param PictureId: 图片id
@@ -447,6 +662,65 @@ module TencentCloud
447
662
  end
448
663
  end
449
664
 
665
+ # DescribeCloudRecording请求参数结构体
666
+ class DescribeCloudRecordingRequest < TencentCloud::Common::AbstractModel
667
+ # @param SdkAppId: TRTC的SDKAppId,和录制的房间所对应的SDKAppId相同。
668
+ # @type SdkAppId: Integer
669
+ # @param TaskId: 录制任务的唯一Id,在启动录制成功后会返回。
670
+ # @type TaskId: String
671
+
672
+ attr_accessor :SdkAppId, :TaskId
673
+
674
+ def initialize(sdkappid=nil, taskid=nil)
675
+ @SdkAppId = sdkappid
676
+ @TaskId = taskid
677
+ end
678
+
679
+ def deserialize(params)
680
+ @SdkAppId = params['SdkAppId']
681
+ @TaskId = params['TaskId']
682
+ end
683
+ end
684
+
685
+ # DescribeCloudRecording返回参数结构体
686
+ class DescribeCloudRecordingResponse < TencentCloud::Common::AbstractModel
687
+ # @param TaskId: 录制任务的唯一Id。
688
+ # @type TaskId: String
689
+ # @param Status: 云端录制任务的状态信息。
690
+ # Idle:表示当前录制任务空闲中
691
+ # InProgress:表示当前录制任务正在进行中。
692
+ # Exited:表示当前录制任务正在退出的过程中。
693
+ # @type Status: String
694
+ # @param StorageFileList: 录制文件信息。
695
+ # 注意:此字段可能返回 null,表示取不到有效值。
696
+ # @type StorageFileList: Array
697
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
698
+ # @type RequestId: String
699
+
700
+ attr_accessor :TaskId, :Status, :StorageFileList, :RequestId
701
+
702
+ def initialize(taskid=nil, status=nil, storagefilelist=nil, requestid=nil)
703
+ @TaskId = taskid
704
+ @Status = status
705
+ @StorageFileList = storagefilelist
706
+ @RequestId = requestid
707
+ end
708
+
709
+ def deserialize(params)
710
+ @TaskId = params['TaskId']
711
+ @Status = params['Status']
712
+ unless params['StorageFileList'].nil?
713
+ @StorageFileList = []
714
+ params['StorageFileList'].each do |i|
715
+ storagefile_tmp = StorageFile.new
716
+ storagefile_tmp.deserialize(i)
717
+ @StorageFileList << storagefile_tmp
718
+ end
719
+ end
720
+ @RequestId = params['RequestId']
721
+ end
722
+ end
723
+
450
724
  # DescribeDetailEvent请求参数结构体
451
725
  class DescribeDetailEventRequest < TencentCloud::Common::AbstractModel
452
726
  # @param CommId: 通话 ID(唯一标识一次通话): SdkAppId_RoomId(房间号)_ CreateTime(房间创建时间,unix时间戳,单位为s)例:1400xxxxxx_218695_1590065777。通过 DescribeRoomInfo(查询历史房间列表)接口获取([查询历史房间列表](https://cloud.tencent.com/document/product/647/44050))。
@@ -1535,6 +1809,227 @@ module TencentCloud
1535
1809
  end
1536
1810
  end
1537
1811
 
1812
+ # 用户自定义混流布局参数列表。
1813
+ class MixLayout < TencentCloud::Common::AbstractModel
1814
+ # @param Top: 画布上该画面左上角的 y 轴坐标,取值范围 [0, 1920],不能超过画布的高。
1815
+ # @type Top: Integer
1816
+ # @param Left: 画布上该画面左上角的 x 轴坐标,取值范围 [0, 1920],不能超过画布的宽。
1817
+ # @type Left: Integer
1818
+ # @param Width: 画布上该画面宽度的相对值,取值范围 [0, 1920],与Left相加不应超过画布的宽。
1819
+ # @type Width: Integer
1820
+ # @param Height: 画布上该画面高度的相对值,取值范围 [0, 1920],与Top相加不应超过画布的高。
1821
+ # @type Height: Integer
1822
+ # @param UserId: 字符串内容为待显示在该画面的主播对应的UserId,如果不指定,会按照主播加入房间的顺序匹配。
1823
+ # @type UserId: String
1824
+ # @param Alpha: 画布的透明度值,取值范围[0, 255]。0表示不透明,255表示全透明。默认值为0。
1825
+ # @type Alpha: Integer
1826
+ # @param RenderMode: 0 :拉伸模式,这个模式下整个视频内容会全部显示,并填满子画面,在源视频和目的视频宽高比不一致的时候,画面不会缺少内容,但是画面可能产生形变;
1827
+
1828
+ # 1 :剪裁模式(默认),这个模式下会严格按照目的视频的宽高比对源视频剪裁之后再拉伸,并填满子画面画布,在源视频和目的视频宽高比不一致的时候,画面保持不变形,但是会被剪裁;
1829
+
1830
+ # 2 :填黑模式,这个模式下会严格保持源视频的宽高比进行等比缩放,在源视频和目的视频宽高比不一致的时候,画面的上下侧边缘或者左右侧边缘会露出子画面画布的背景;
1831
+
1832
+ # 3 :智能拉伸模式,这个模式类似剪裁模式,区别是在源视频和目的视频宽高比不一致的时候,限制了最大剪裁比例为画面的宽度或者高度的20%;
1833
+ # @type RenderMode: Integer
1834
+ # @param MediaId: 对应订阅流的主辅路标识:
1835
+ # 0:主流(默认);
1836
+ # 1:辅流;
1837
+ # @type MediaId: Integer
1838
+ # @param ImageLayer: 该画布的图层顺序, 这个值越小表示图层越靠后。默认值为0。
1839
+ # @type ImageLayer: Integer
1840
+ # @param SubBackgroundImage: 下载的url地址, 只支持jpg, png,大小限制不超过5M,宽高比不一致的处理方案同 RenderMode。
1841
+ # @type SubBackgroundImage: String
1842
+
1843
+ attr_accessor :Top, :Left, :Width, :Height, :UserId, :Alpha, :RenderMode, :MediaId, :ImageLayer, :SubBackgroundImage
1844
+
1845
+ def initialize(top=nil, left=nil, width=nil, height=nil, userid=nil, alpha=nil, rendermode=nil, mediaid=nil, imagelayer=nil, subbackgroundimage=nil)
1846
+ @Top = top
1847
+ @Left = left
1848
+ @Width = width
1849
+ @Height = height
1850
+ @UserId = userid
1851
+ @Alpha = alpha
1852
+ @RenderMode = rendermode
1853
+ @MediaId = mediaid
1854
+ @ImageLayer = imagelayer
1855
+ @SubBackgroundImage = subbackgroundimage
1856
+ end
1857
+
1858
+ def deserialize(params)
1859
+ @Top = params['Top']
1860
+ @Left = params['Left']
1861
+ @Width = params['Width']
1862
+ @Height = params['Height']
1863
+ @UserId = params['UserId']
1864
+ @Alpha = params['Alpha']
1865
+ @RenderMode = params['RenderMode']
1866
+ @MediaId = params['MediaId']
1867
+ @ImageLayer = params['ImageLayer']
1868
+ @SubBackgroundImage = params['SubBackgroundImage']
1869
+ end
1870
+ end
1871
+
1872
+ # 录制的混流布局参数。
1873
+ class MixLayoutParams < TencentCloud::Common::AbstractModel
1874
+ # @param MixLayoutMode: 布局模式:
1875
+ # 1:悬浮布局;
1876
+ # 2:屏幕分享布局;
1877
+ # 3:九宫格布局(默认);
1878
+ # 4:自定义布局;
1879
+
1880
+ # 悬浮布局:默认第一个进入房间的主播(也可以指定一个主播)的视频画面会铺满整个屏幕。其他主播的视频画面从左下角开始依次按照进房顺序水平排列,显示为小画面,小画面悬浮于大画面之上。当画面数量小于等于17个时,每行4个(4 x 4排列)。当画面数量大于17个时,重新布局小画面为每行5个(5 x 5)排列。最多支持25个画面,如果用户只发送音频,仍然会占用画面位置。
1881
+
1882
+ # 屏幕分享布局:指定一个主播在屏幕左侧的大画面位置(如果不指定,那么大画面位置为背景色),其他主播自上而下依次垂直排列于右侧。当画面数量少于17个的时候,右侧每列最多8人,最多占据两列。当画面数量多于17个的时候,超过17个画面的主播从左下角开始依次水平排列。最多支持25个画面,如果主播只发送音频,仍然会占用画面位置。
1883
+
1884
+ # 九宫格布局:根据主播的数量自动调整每个画面的大小,每个主播的画面大小一致,最多支持25个画面。
1885
+
1886
+ # 自定义布局:根据需要在MixLayoutList内定制每个主播画面的布局。
1887
+ # @type MixLayoutMode: Integer
1888
+ # @param MixLayoutList: 如果MixLayoutMode 选择为4自定义布局模式的话,设置此参数为每个主播所对应的布局画面的详细信息,最大不超过25个。
1889
+ # @type MixLayoutList: Array
1890
+ # @param BackGroundColor: 录制背景颜色,RGB的颜色表的16进制表示,每个颜色通过8bit长度标识,默认为黑色。比如橙色对应的RGB为 R:255 G:165 B:0, 那么对应的字符串描述为#FFA500,格式规范:‘#‘开头,后面跟固定RGB的颜色值
1891
+ # @type BackGroundColor: String
1892
+ # @param MaxResolutionUserId: 在布局模式为1:悬浮布局和 2:屏幕分享布局时,设定为显示大视频画面的UserId。不填的话:悬浮布局默认是第一个进房间的主播,屏幕分享布局默认是背景色
1893
+ # @type MaxResolutionUserId: String
1894
+ # @param MediaId: 主辅路标识,
1895
+ # 0:主流(默认);
1896
+ # 1:辅流(屏幕分享);
1897
+ # 这个位置的MediaId代表的是对应MaxResolutionUserId的主辅路,MixLayoutList内代表的是自定义用户的主辅路。
1898
+ # @type MediaId: Integer
1899
+ # @param BackgroundImageUrl: 下载的url地址, 只支持jpg, png,大小限制不超过5M。
1900
+ # @type BackgroundImageUrl: String
1901
+ # @param PlaceHolderMode: 设置为1时代表启用占位图功能,0时代表不启用占位图功能,默认为0。启用占位图功能时,在预设位置的用户没有上行视频时可显示对应的占位图。
1902
+ # @type PlaceHolderMode: Integer
1903
+ # @param BackgroundImageRenderMode: 背景画面宽高比不一致的时候处理方案,与MixLayoufList定义的RenderMode一致。
1904
+ # @type BackgroundImageRenderMode: Integer
1905
+ # @param DefaultSubBackgroundImage: 下载的url地址, 只支持jpg, png,大小限制不超过5M,宽高比不一致的处理方案同 RenderMode。
1906
+ # @type DefaultSubBackgroundImage: String
1907
+ # @param WaterMarkList: 水印布局参数, 最多支持25个。
1908
+ # @type WaterMarkList: Array
1909
+
1910
+ attr_accessor :MixLayoutMode, :MixLayoutList, :BackGroundColor, :MaxResolutionUserId, :MediaId, :BackgroundImageUrl, :PlaceHolderMode, :BackgroundImageRenderMode, :DefaultSubBackgroundImage, :WaterMarkList
1911
+
1912
+ def initialize(mixlayoutmode=nil, mixlayoutlist=nil, backgroundcolor=nil, maxresolutionuserid=nil, mediaid=nil, backgroundimageurl=nil, placeholdermode=nil, backgroundimagerendermode=nil, defaultsubbackgroundimage=nil, watermarklist=nil)
1913
+ @MixLayoutMode = mixlayoutmode
1914
+ @MixLayoutList = mixlayoutlist
1915
+ @BackGroundColor = backgroundcolor
1916
+ @MaxResolutionUserId = maxresolutionuserid
1917
+ @MediaId = mediaid
1918
+ @BackgroundImageUrl = backgroundimageurl
1919
+ @PlaceHolderMode = placeholdermode
1920
+ @BackgroundImageRenderMode = backgroundimagerendermode
1921
+ @DefaultSubBackgroundImage = defaultsubbackgroundimage
1922
+ @WaterMarkList = watermarklist
1923
+ end
1924
+
1925
+ def deserialize(params)
1926
+ @MixLayoutMode = params['MixLayoutMode']
1927
+ unless params['MixLayoutList'].nil?
1928
+ @MixLayoutList = []
1929
+ params['MixLayoutList'].each do |i|
1930
+ mixlayout_tmp = MixLayout.new
1931
+ mixlayout_tmp.deserialize(i)
1932
+ @MixLayoutList << mixlayout_tmp
1933
+ end
1934
+ end
1935
+ @BackGroundColor = params['BackGroundColor']
1936
+ @MaxResolutionUserId = params['MaxResolutionUserId']
1937
+ @MediaId = params['MediaId']
1938
+ @BackgroundImageUrl = params['BackgroundImageUrl']
1939
+ @PlaceHolderMode = params['PlaceHolderMode']
1940
+ @BackgroundImageRenderMode = params['BackgroundImageRenderMode']
1941
+ @DefaultSubBackgroundImage = params['DefaultSubBackgroundImage']
1942
+ unless params['WaterMarkList'].nil?
1943
+ @WaterMarkList = []
1944
+ params['WaterMarkList'].each do |i|
1945
+ watermark_tmp = WaterMark.new
1946
+ watermark_tmp.deserialize(i)
1947
+ @WaterMarkList << watermark_tmp
1948
+ end
1949
+ end
1950
+ end
1951
+ end
1952
+
1953
+ # 录制的音视频转码参数。
1954
+ class MixTranscodeParams < TencentCloud::Common::AbstractModel
1955
+ # @param VideoParams: 录制视频转码参数,注意如果设置了这个参数,那么里面的字段都是必填的,没有默认值,如果不填这个参数,那么取值为默认值。
1956
+ # @type VideoParams: :class:`Tencentcloud::Trtc.v20190722.models.VideoParams`
1957
+ # @param AudioParams: 录制音频转码参数,注意如果设置了这个参数,那么里面的字段都是必填的,没有默认值,如果不填这个参数,那么取值为默认值。
1958
+ # @type AudioParams: :class:`Tencentcloud::Trtc.v20190722.models.AudioParams`
1959
+
1960
+ attr_accessor :VideoParams, :AudioParams
1961
+
1962
+ def initialize(videoparams=nil, audioparams=nil)
1963
+ @VideoParams = videoparams
1964
+ @AudioParams = audioparams
1965
+ end
1966
+
1967
+ def deserialize(params)
1968
+ unless params['VideoParams'].nil?
1969
+ @VideoParams = VideoParams.new
1970
+ @VideoParams.deserialize(params['VideoParams'])
1971
+ end
1972
+ unless params['AudioParams'].nil?
1973
+ @AudioParams = AudioParams.new
1974
+ @AudioParams.deserialize(params['AudioParams'])
1975
+ end
1976
+ end
1977
+ end
1978
+
1979
+ # ModifyCloudRecording请求参数结构体
1980
+ class ModifyCloudRecordingRequest < TencentCloud::Common::AbstractModel
1981
+ # @param SdkAppId: TRTC的SDKAppId,和录制的房间所对应的SDKAppId相同。
1982
+ # @type SdkAppId: Integer
1983
+ # @param TaskId: 录制任务的唯一Id,在启动录制成功后会返回。
1984
+ # @type TaskId: String
1985
+ # @param MixLayoutParams: 需要更新的混流的布局参数。
1986
+ # @type MixLayoutParams: :class:`Tencentcloud::Trtc.v20190722.models.MixLayoutParams`
1987
+ # @param SubscribeStreamUserIds: 指定订阅流白名单或者黑名单。
1988
+ # @type SubscribeStreamUserIds: :class:`Tencentcloud::Trtc.v20190722.models.SubscribeStreamUserIds`
1989
+
1990
+ attr_accessor :SdkAppId, :TaskId, :MixLayoutParams, :SubscribeStreamUserIds
1991
+
1992
+ def initialize(sdkappid=nil, taskid=nil, mixlayoutparams=nil, subscribestreamuserids=nil)
1993
+ @SdkAppId = sdkappid
1994
+ @TaskId = taskid
1995
+ @MixLayoutParams = mixlayoutparams
1996
+ @SubscribeStreamUserIds = subscribestreamuserids
1997
+ end
1998
+
1999
+ def deserialize(params)
2000
+ @SdkAppId = params['SdkAppId']
2001
+ @TaskId = params['TaskId']
2002
+ unless params['MixLayoutParams'].nil?
2003
+ @MixLayoutParams = MixLayoutParams.new
2004
+ @MixLayoutParams.deserialize(params['MixLayoutParams'])
2005
+ end
2006
+ unless params['SubscribeStreamUserIds'].nil?
2007
+ @SubscribeStreamUserIds = SubscribeStreamUserIds.new
2008
+ @SubscribeStreamUserIds.deserialize(params['SubscribeStreamUserIds'])
2009
+ end
2010
+ end
2011
+ end
2012
+
2013
+ # ModifyCloudRecording返回参数结构体
2014
+ class ModifyCloudRecordingResponse < TencentCloud::Common::AbstractModel
2015
+ # @param TaskId: 云录制服务分配的任务 ID。任务 ID 是对一次录制生命周期过程的唯一标识,结束录制时会失去意义。
2016
+ # @type TaskId: String
2017
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2018
+ # @type RequestId: String
2019
+
2020
+ attr_accessor :TaskId, :RequestId
2021
+
2022
+ def initialize(taskid=nil, requestid=nil)
2023
+ @TaskId = taskid
2024
+ @RequestId = requestid
2025
+ end
2026
+
2027
+ def deserialize(params)
2028
+ @TaskId = params['TaskId']
2029
+ @RequestId = params['RequestId']
2030
+ end
2031
+ end
2032
+
1538
2033
  # ModifyPicture请求参数结构体
1539
2034
  class ModifyPictureRequest < TencentCloud::Common::AbstractModel
1540
2035
  # @param PictureId: 图片id
@@ -1790,6 +2285,46 @@ module TencentCloud
1790
2285
  end
1791
2286
  end
1792
2287
 
2288
+ # 云端录制控制参数。
2289
+ class RecordParams < TencentCloud::Common::AbstractModel
2290
+ # @param RecordMode: 录制模式:
2291
+ # 1:单流录制,分别录制房间的订阅UserId的音频和视频,将录制文件(M3U8/TS)上传至云存储;
2292
+ # 2:混流录制,将房间内订阅UserId的音视频混录成一个音视频文件,将录制文件[M3U8/TS]上传至云存储;
2293
+ # @type RecordMode: Integer
2294
+ # @param MaxIdleTime: 房间内持续没有主播的状态超过MaxIdleTime的时长,自动停止录制,单位:秒。默认值为 30 秒,该值需大于等于 5秒,且小于等于 86400秒(24小时)。
2295
+ # @type MaxIdleTime: Integer
2296
+ # @param StreamType: 录制的媒体流类型:
2297
+ # 0:录制音频+视频流(默认);
2298
+ # 1:仅录制音频流;
2299
+ # 2:仅录制视频流,
2300
+ # @type StreamType: Integer
2301
+ # @param SubscribeStreamUserIds: 指定订阅流白名单或者黑名单。
2302
+ # @type SubscribeStreamUserIds: :class:`Tencentcloud::Trtc.v20190722.models.SubscribeStreamUserIds`
2303
+ # @param OutputFormat: 输出文件的格式。0:(默认)输出文件为hls格式。1:输出文件格式为hls+mp4(hls录制完成后转mp4文件)
2304
+ # @type OutputFormat: Integer
2305
+
2306
+ attr_accessor :RecordMode, :MaxIdleTime, :StreamType, :SubscribeStreamUserIds, :OutputFormat
2307
+
2308
+ def initialize(recordmode=nil, maxidletime=nil, streamtype=nil, subscribestreamuserids=nil, outputformat=nil)
2309
+ @RecordMode = recordmode
2310
+ @MaxIdleTime = maxidletime
2311
+ @StreamType = streamtype
2312
+ @SubscribeStreamUserIds = subscribestreamuserids
2313
+ @OutputFormat = outputformat
2314
+ end
2315
+
2316
+ def deserialize(params)
2317
+ @RecordMode = params['RecordMode']
2318
+ @MaxIdleTime = params['MaxIdleTime']
2319
+ @StreamType = params['StreamType']
2320
+ unless params['SubscribeStreamUserIds'].nil?
2321
+ @SubscribeStreamUserIds = SubscribeStreamUserIds.new
2322
+ @SubscribeStreamUserIds.deserialize(params['SubscribeStreamUserIds'])
2323
+ end
2324
+ @OutputFormat = params['OutputFormat']
2325
+ end
2326
+ end
2327
+
1793
2328
  # 录制的使用信息。
1794
2329
  class RecordUsage < TencentCloud::Common::AbstractModel
1795
2330
  # @param TimeKey: 本组数据对应的时间点,格式如:2020-09-07或2020-09-07 00:05:05。
@@ -2303,6 +2838,134 @@ module TencentCloud
2303
2838
  end
2304
2839
  end
2305
2840
 
2841
+ # 云端录制查询接口,录制文件的信息
2842
+ class StorageFile < TencentCloud::Common::AbstractModel
2843
+ # @param UserId: 录制文件对应的UserId,如果是混流的话的这里返回的是空串。
2844
+ # 注意:此字段可能返回 null,表示取不到有效值。
2845
+ # @type UserId: String
2846
+ # @param FileName: 录制索引文件名。
2847
+ # @type FileName: String
2848
+ # @param TrackType: 录制文件流信息。
2849
+ # video:视频录制文件
2850
+ # audio:音频录制文件
2851
+ # audio_video:音视频录制文件
2852
+ # 注意:此字段可能返回 null,表示取不到有效值。
2853
+ # @type TrackType: String
2854
+ # @param BeginTimeStamp: 录制文件开始Unix时间戳。
2855
+ # @type BeginTimeStamp: Integer
2856
+
2857
+ attr_accessor :UserId, :FileName, :TrackType, :BeginTimeStamp
2858
+
2859
+ def initialize(userid=nil, filename=nil, tracktype=nil, begintimestamp=nil)
2860
+ @UserId = userid
2861
+ @FileName = filename
2862
+ @TrackType = tracktype
2863
+ @BeginTimeStamp = begintimestamp
2864
+ end
2865
+
2866
+ def deserialize(params)
2867
+ @UserId = params['UserId']
2868
+ @FileName = params['FileName']
2869
+ @TrackType = params['TrackType']
2870
+ @BeginTimeStamp = params['BeginTimeStamp']
2871
+ end
2872
+ end
2873
+
2874
+ # 第三方存储参数。
2875
+ class StorageParams < TencentCloud::Common::AbstractModel
2876
+ # @param CloudStorage: 第三方云存储的账号信息。
2877
+ # @type CloudStorage: :class:`Tencentcloud::Trtc.v20190722.models.CloudStorage`
2878
+ # @param CloudVod: 第三方云点播的账号信息。
2879
+ # @type CloudVod: :class:`Tencentcloud::Trtc.v20190722.models.CloudVod`
2880
+
2881
+ attr_accessor :CloudStorage, :CloudVod
2882
+
2883
+ def initialize(cloudstorage=nil, cloudvod=nil)
2884
+ @CloudStorage = cloudstorage
2885
+ @CloudVod = cloudvod
2886
+ end
2887
+
2888
+ def deserialize(params)
2889
+ unless params['CloudStorage'].nil?
2890
+ @CloudStorage = CloudStorage.new
2891
+ @CloudStorage.deserialize(params['CloudStorage'])
2892
+ end
2893
+ unless params['CloudVod'].nil?
2894
+ @CloudVod = CloudVod.new
2895
+ @CloudVod.deserialize(params['CloudVod'])
2896
+ end
2897
+ end
2898
+ end
2899
+
2900
+ # 指定订阅流白名单或者黑名单,音频的白名单和音频黑名单不能同时设置,视频亦然。同时实际并发订阅的媒体流路数最大支持25路流,混流场景下视频的多画面最大支持24画面。支持通过设置".*$"通配符,来前缀匹配黑白名单的UserId,注意房间里不能有和通配符规则相同的用户,否则将视为订阅具体用户,前缀规则会失效。
2901
+ class SubscribeStreamUserIds < TencentCloud::Common::AbstractModel
2902
+ # @param SubscribeAudioUserIds: 订阅音频流白名单,指定订阅哪几个UserId的音频流,例如["1", "2", "3"], 代表订阅UserId 1,2,3的音频流;["1.*$"], 代表订阅UserId前缀为1的音频流。默认不填订阅房间内所有的音频流,订阅列表用户数不超过32。
2903
+ # @type SubscribeAudioUserIds: Array
2904
+ # @param UnSubscribeAudioUserIds: 订阅音频流黑名单,指定不订阅哪几个UserId的音频流,例如["1", "2", "3"], 代表不订阅UserId 1,2,3的音频流;["1.*$"], 代表不订阅UserId前缀为1的音频流。默认不填订阅房间内所有音频流,订阅列表用户数不超过32。
2905
+ # @type UnSubscribeAudioUserIds: Array
2906
+ # @param SubscribeVideoUserIds: 订阅视频流白名单,指定订阅哪几个UserId的视频流,例如["1", "2", "3"], 代表订阅UserId 1,2,3的视频流;["1.*$"], 代表订阅UserId前缀为1的视频流。默认不填订阅房间内所有视频流,订阅列表用户数不超过32。
2907
+ # @type SubscribeVideoUserIds: Array
2908
+ # @param UnSubscribeVideoUserIds: 订阅视频流黑名单,指定不订阅哪几个UserId的视频流,例如["1", "2", "3"], 代表不订阅UserId 1,2,3的视频流;["1.*$"], 代表不订阅UserId前缀为1的视频流。默认不填订阅房间内所有视频流,订阅列表用户数不超过32。
2909
+ # @type UnSubscribeVideoUserIds: Array
2910
+
2911
+ attr_accessor :SubscribeAudioUserIds, :UnSubscribeAudioUserIds, :SubscribeVideoUserIds, :UnSubscribeVideoUserIds
2912
+
2913
+ def initialize(subscribeaudiouserids=nil, unsubscribeaudiouserids=nil, subscribevideouserids=nil, unsubscribevideouserids=nil)
2914
+ @SubscribeAudioUserIds = subscribeaudiouserids
2915
+ @UnSubscribeAudioUserIds = unsubscribeaudiouserids
2916
+ @SubscribeVideoUserIds = subscribevideouserids
2917
+ @UnSubscribeVideoUserIds = unsubscribevideouserids
2918
+ end
2919
+
2920
+ def deserialize(params)
2921
+ @SubscribeAudioUserIds = params['SubscribeAudioUserIds']
2922
+ @UnSubscribeAudioUserIds = params['UnSubscribeAudioUserIds']
2923
+ @SubscribeVideoUserIds = params['SubscribeVideoUserIds']
2924
+ @UnSubscribeVideoUserIds = params['UnSubscribeVideoUserIds']
2925
+ end
2926
+ end
2927
+
2928
+ # 腾讯云点播相关参数。
2929
+ class TencentVod < TencentCloud::Common::AbstractModel
2930
+ # @param Procedure: 媒体后续任务处理操作,即完成媒体上传后,可自动发起任务流操作。参数值为任务流模板名,云点播支持 创建任务流模板 并为模板命名。
2931
+ # @type Procedure: String
2932
+ # @param ExpireTime: 媒体文件过期时间,为当前时间的绝对过期时间;保存一天,就填"86400",永久保存就填"0",默认永久保存。
2933
+ # @type ExpireTime: Integer
2934
+ # @param StorageRegion: 指定上传园区,仅适用于对上传地域有特殊需求的用户。
2935
+ # @type StorageRegion: String
2936
+ # @param ClassId: 分类ID,用于对媒体进行分类管理,可通过 创建分类 接口,创建分类,获得分类 ID。
2937
+ # 默认值:0,表示其他分类。
2938
+ # @type ClassId: Integer
2939
+ # @param SubAppId: 点播 子应用 ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
2940
+ # @type SubAppId: Integer
2941
+ # @param SessionContext: 任务流上下文,任务完成回调时透传。
2942
+ # @type SessionContext: String
2943
+ # @param SourceContext: 上传上下文,上传完成回调时透传。
2944
+ # @type SourceContext: String
2945
+
2946
+ attr_accessor :Procedure, :ExpireTime, :StorageRegion, :ClassId, :SubAppId, :SessionContext, :SourceContext
2947
+
2948
+ def initialize(procedure=nil, expiretime=nil, storageregion=nil, classid=nil, subappid=nil, sessioncontext=nil, sourcecontext=nil)
2949
+ @Procedure = procedure
2950
+ @ExpireTime = expiretime
2951
+ @StorageRegion = storageregion
2952
+ @ClassId = classid
2953
+ @SubAppId = subappid
2954
+ @SessionContext = sessioncontext
2955
+ @SourceContext = sourcecontext
2956
+ end
2957
+
2958
+ def deserialize(params)
2959
+ @Procedure = params['Procedure']
2960
+ @ExpireTime = params['ExpireTime']
2961
+ @StorageRegion = params['StorageRegion']
2962
+ @ClassId = params['ClassId']
2963
+ @SubAppId = params['SubAppId']
2964
+ @SessionContext = params['SessionContext']
2965
+ @SourceContext = params['SourceContext']
2966
+ end
2967
+ end
2968
+
2306
2969
  # 返回的质量数据,时间:值
2307
2970
  class TimeValue < TencentCloud::Common::AbstractModel
2308
2971
  # @param Time: 时间,unix时间戳(1590065877s)
@@ -2419,6 +3082,93 @@ module TencentCloud
2419
3082
  end
2420
3083
  end
2421
3084
 
3085
+ # 录制视频转码参数。
3086
+ class VideoParams < TencentCloud::Common::AbstractModel
3087
+ # @param Width: 视频的宽度值,单位为像素,默认值360。不能超过1920,与height的乘积不能超过1920*1080。
3088
+ # @type Width: Integer
3089
+ # @param Height: 视频的高度值,单位为像素,默认值640。不能超过1920,与width的乘积不能超过1920*1080。
3090
+ # @type Height: Integer
3091
+ # @param Fps: 视频的帧率,范围[1, 60],默认15。
3092
+ # @type Fps: Integer
3093
+ # @param BitRate: 视频的码率,单位是bps,范围[64000, 8192000],默认550000bps。
3094
+ # @type BitRate: Integer
3095
+ # @param Gop: 视频关键帧时间间隔,单位秒,默认值10秒。
3096
+ # @type Gop: Integer
3097
+
3098
+ attr_accessor :Width, :Height, :Fps, :BitRate, :Gop
3099
+
3100
+ def initialize(width=nil, height=nil, fps=nil, bitrate=nil, gop=nil)
3101
+ @Width = width
3102
+ @Height = height
3103
+ @Fps = fps
3104
+ @BitRate = bitrate
3105
+ @Gop = gop
3106
+ end
3107
+
3108
+ def deserialize(params)
3109
+ @Width = params['Width']
3110
+ @Height = params['Height']
3111
+ @Fps = params['Fps']
3112
+ @BitRate = params['BitRate']
3113
+ @Gop = params['Gop']
3114
+ end
3115
+ end
3116
+
3117
+ # 水印布局参数
3118
+ class WaterMark < TencentCloud::Common::AbstractModel
3119
+ # @param WaterMarkType: 水印类型,0为图片(默认),1为文字(暂不支持)。
3120
+ # @type WaterMarkType: Integer
3121
+ # @param WaterMarkImage: 水印为图片时的参数列表,水印为图片时校验必填。
3122
+ # @type WaterMarkImage: :class:`Tencentcloud::Trtc.v20190722.models.WaterMarkImage`
3123
+
3124
+ attr_accessor :WaterMarkType, :WaterMarkImage
3125
+
3126
+ def initialize(watermarktype=nil, watermarkimage=nil)
3127
+ @WaterMarkType = watermarktype
3128
+ @WaterMarkImage = watermarkimage
3129
+ end
3130
+
3131
+ def deserialize(params)
3132
+ @WaterMarkType = params['WaterMarkType']
3133
+ unless params['WaterMarkImage'].nil?
3134
+ @WaterMarkImage = WaterMarkImage.new
3135
+ @WaterMarkImage.deserialize(params['WaterMarkImage'])
3136
+ end
3137
+ end
3138
+ end
3139
+
3140
+ # 水印类型为图片的参数列表
3141
+ class WaterMarkImage < TencentCloud::Common::AbstractModel
3142
+ # @param WaterMarkUrl: 下载的url地址, 只支持jpg, png,大小限制不超过5M。
3143
+ # @type WaterMarkUrl: String
3144
+ # @param Top: 画布上该画面左上角的 y 轴坐标,取值范围 [0, 2560],不能超过画布的高。
3145
+ # @type Top: Integer
3146
+ # @param Left: 画布上该画面左上角的 x 轴坐标,取值范围 [0, 2560],不能超过画布的宽。
3147
+ # @type Left: Integer
3148
+ # @param Width: 画布上该画面宽度的相对值,取值范围 [0, 2560],与Left相加不应超过画布的宽。
3149
+ # @type Width: Integer
3150
+ # @param Height: 画布上该画面高度的相对值,取值范围 [0, 2560],与Top相加不应超过画布的高。
3151
+ # @type Height: Integer
3152
+
3153
+ attr_accessor :WaterMarkUrl, :Top, :Left, :Width, :Height
3154
+
3155
+ def initialize(watermarkurl=nil, top=nil, left=nil, width=nil, height=nil)
3156
+ @WaterMarkUrl = watermarkurl
3157
+ @Top = top
3158
+ @Left = left
3159
+ @Width = width
3160
+ @Height = height
3161
+ end
3162
+
3163
+ def deserialize(params)
3164
+ @WaterMarkUrl = params['WaterMarkUrl']
3165
+ @Top = params['Top']
3166
+ @Left = params['Left']
3167
+ @Width = params['Width']
3168
+ @Height = params['Height']
3169
+ end
3170
+ end
3171
+
2422
3172
  # MCU混流水印参数
2423
3173
  class WaterMarkParams < TencentCloud::Common::AbstractModel
2424
3174
  # @param WaterMarkId: 混流-水印图片ID。取值为实时音视频控制台上传的图片ID。
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-trtc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.371
4
+ version: 3.0.379
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-08-01 00:00:00.000000000 Z
11
+ date: 2022-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ~>
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ~>
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.0'
27
27
  description: Tencent Cloud Ruby SDK is the official software development kit, which
@@ -33,10 +33,10 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/VERSION
37
- - lib/tencentcloud-sdk-trtc.rb
38
- - lib/v20190722/client.rb
39
36
  - lib/v20190722/models.rb
37
+ - lib/v20190722/client.rb
38
+ - lib/tencentcloud-sdk-trtc.rb
39
+ - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses:
42
42
  - Apache-2.0
@@ -49,17 +49,17 @@ require_paths:
49
49
  - lib
50
50
  required_ruby_version: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ">="
52
+ - - '>='
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  required_rubygems_version: !ruby/object:Gem::Requirement
56
56
  requirements:
57
- - - ">="
57
+ - - '>='
58
58
  - !ruby/object:Gem::Version
59
59
  version: '0'
60
60
  requirements: []
61
61
  rubyforge_project:
62
- rubygems_version: 2.6.14
62
+ rubygems_version: 2.0.14
63
63
  signing_key:
64
64
  specification_version: 4
65
65
  summary: Tencent Cloud SDK for Ruby - TRTC