tencentcloud-sdk-nodejs-vod 4.1.240 → 4.1.241
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.
package/package.json
CHANGED
|
@@ -23259,66 +23259,65 @@ export interface RebuildVideoInfo {
|
|
|
23259
23259
|
*/
|
|
23260
23260
|
export interface MediaTranscodeItem {
|
|
23261
23261
|
/**
|
|
23262
|
-
*
|
|
23262
|
+
* <p>转码后的视频文件地址。</p>
|
|
23263
23263
|
*/
|
|
23264
23264
|
Url?: string;
|
|
23265
23265
|
/**
|
|
23266
|
-
*
|
|
23267
|
-
<font color=red>注意:取值 0 表示原始文件。</font>
|
|
23266
|
+
* <p>转码规格 ID,参见<a href="https://cloud.tencent.com/document/product/266/33476">转码参数模板</a>。<br><font color="red">注意:取值 0 表示原始文件。</font></p>
|
|
23268
23267
|
*/
|
|
23269
23268
|
Definition?: number;
|
|
23270
23269
|
/**
|
|
23271
|
-
*
|
|
23270
|
+
* <p>视频流码率平均值与音频流码率平均值之和, 单位:bps。</p>
|
|
23272
23271
|
*/
|
|
23273
23272
|
Bitrate?: number;
|
|
23274
23273
|
/**
|
|
23275
|
-
*
|
|
23274
|
+
* <p>视频流高度的最大值,单位:px。</p>
|
|
23276
23275
|
*/
|
|
23277
23276
|
Height?: number;
|
|
23278
23277
|
/**
|
|
23279
|
-
*
|
|
23278
|
+
* <p>视频流宽度的最大值,单位:px。</p>
|
|
23280
23279
|
*/
|
|
23281
23280
|
Width?: number;
|
|
23282
23281
|
/**
|
|
23283
|
-
*
|
|
23284
|
-
<li>当媒体文件为 HLS 时,大小是 m3u8 和 ts 文件大小的总和。</li>
|
|
23282
|
+
* <p>媒体文件总大小,单位:字节。</p><li>当媒体文件为 HLS 时,大小是 m3u8 和 ts 文件大小的总和。</li>
|
|
23285
23283
|
*/
|
|
23286
23284
|
Size?: number;
|
|
23287
23285
|
/**
|
|
23288
|
-
*
|
|
23286
|
+
* <p>视频时长,单位:秒。</p>
|
|
23289
23287
|
*/
|
|
23290
23288
|
Duration?: number;
|
|
23291
23289
|
/**
|
|
23292
|
-
*
|
|
23290
|
+
* <p>视频的 md5 值。</p>
|
|
23293
23291
|
*/
|
|
23294
23292
|
Md5?: string;
|
|
23295
23293
|
/**
|
|
23296
|
-
*
|
|
23294
|
+
* <p>容器类型,例如 m4a,mp4 等。</p>
|
|
23297
23295
|
*/
|
|
23298
23296
|
Container?: string;
|
|
23299
23297
|
/**
|
|
23300
|
-
*
|
|
23298
|
+
* <p>视频流信息。</p>
|
|
23301
23299
|
*/
|
|
23302
23300
|
VideoStreamSet?: Array<MediaVideoStreamItem>;
|
|
23303
23301
|
/**
|
|
23304
|
-
*
|
|
23302
|
+
* <p>音频流信息。</p>
|
|
23305
23303
|
*/
|
|
23306
23304
|
AudioStreamSet?: Array<MediaAudioStreamItem>;
|
|
23307
23305
|
/**
|
|
23308
|
-
*
|
|
23309
|
-
<li>Trace 表示经过溯源水印处理;</li>
|
|
23310
|
-
<li>CopyRight 表示经过版权水印处理;</li>
|
|
23311
|
-
<li>None 表示没有经过数字水印处理。</li>
|
|
23306
|
+
* <p>数字水印类型。可选值:</p><li>Trace 表示经过溯源水印处理;</li><li>CopyRight 表示经过版权水印处理;</li><li>None 表示没有经过数字水印处理。</li>
|
|
23312
23307
|
*/
|
|
23313
23308
|
DigitalWatermarkType?: string;
|
|
23314
23309
|
/**
|
|
23315
|
-
*
|
|
23310
|
+
* <p>版权信息。</p>
|
|
23316
23311
|
*/
|
|
23317
23312
|
CopyRightWatermarkText?: string;
|
|
23318
23313
|
/**
|
|
23319
|
-
*
|
|
23314
|
+
* <p>数字水印模板id。</p>
|
|
23320
23315
|
*/
|
|
23321
23316
|
BlindWatermarkDefinition?: number;
|
|
23317
|
+
/**
|
|
23318
|
+
* <p>转码生成的新FileId,请求开启独立媒资输出时有效。</p>
|
|
23319
|
+
*/
|
|
23320
|
+
FileId?: string;
|
|
23322
23321
|
}
|
|
23323
23322
|
/**
|
|
23324
23323
|
* CLS 日志集信息
|