tencentcloud-sdk-nodejs-intl-en 3.0.546 → 3.0.547
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
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.547";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -10654,6 +10654,15 @@ Default value: OFF.
|
|
|
10654
10654
|
*/
|
|
10655
10655
|
this.PreserveHDRSwitch = null;
|
|
10656
10656
|
|
|
10657
|
+
/**
|
|
10658
|
+
* The codec tag. This parameter is valid only if the H.265 codec is used. Valid values:
|
|
10659
|
+
<li>hvc1</li>
|
|
10660
|
+
<li>hev1</li>
|
|
10661
|
+
Default value: hvc1.
|
|
10662
|
+
* @type {string || null}
|
|
10663
|
+
*/
|
|
10664
|
+
this.CodecTag = null;
|
|
10665
|
+
|
|
10657
10666
|
}
|
|
10658
10667
|
|
|
10659
10668
|
/**
|
|
@@ -10673,6 +10682,7 @@ Default value: OFF.
|
|
|
10673
10682
|
this.Vcrf = 'Vcrf' in params ? params.Vcrf : null;
|
|
10674
10683
|
this.Gop = 'Gop' in params ? params.Gop : null;
|
|
10675
10684
|
this.PreserveHDRSwitch = 'PreserveHDRSwitch' in params ? params.PreserveHDRSwitch : null;
|
|
10685
|
+
this.CodecTag = 'CodecTag' in params ? params.CodecTag : null;
|
|
10676
10686
|
|
|
10677
10687
|
}
|
|
10678
10688
|
}
|
|
@@ -24228,6 +24238,15 @@ When this parameter is set to 0 or left empty, `Gop` will be automatically set.
|
|
|
24228
24238
|
*/
|
|
24229
24239
|
this.PreserveHDRSwitch = null;
|
|
24230
24240
|
|
|
24241
|
+
/**
|
|
24242
|
+
* The codec tag. This parameter is valid only if the H.265 codec is used. Valid values:
|
|
24243
|
+
<li>hvc1</li>
|
|
24244
|
+
<li>hev1</li>
|
|
24245
|
+
Default value: hvc1.
|
|
24246
|
+
* @type {string || null}
|
|
24247
|
+
*/
|
|
24248
|
+
this.CodecTag = null;
|
|
24249
|
+
|
|
24231
24250
|
}
|
|
24232
24251
|
|
|
24233
24252
|
/**
|
|
@@ -24247,6 +24266,7 @@ When this parameter is set to 0 or left empty, `Gop` will be automatically set.
|
|
|
24247
24266
|
this.Vcrf = 'Vcrf' in params ? params.Vcrf : null;
|
|
24248
24267
|
this.Gop = 'Gop' in params ? params.Gop : null;
|
|
24249
24268
|
this.PreserveHDRSwitch = 'PreserveHDRSwitch' in params ? params.PreserveHDRSwitch : null;
|
|
24269
|
+
this.CodecTag = 'CodecTag' in params ? params.CodecTag : null;
|
|
24250
24270
|
|
|
24251
24271
|
}
|
|
24252
24272
|
}
|
|
@@ -26527,6 +26547,12 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
26527
26547
|
*/
|
|
26528
26548
|
this.Fps = null;
|
|
26529
26549
|
|
|
26550
|
+
/**
|
|
26551
|
+
* The codec tag. This parameter is valid only if `Codec` is `hevc`.
|
|
26552
|
+
* @type {string || null}
|
|
26553
|
+
*/
|
|
26554
|
+
this.CodecTag = null;
|
|
26555
|
+
|
|
26530
26556
|
}
|
|
26531
26557
|
|
|
26532
26558
|
/**
|
|
@@ -26541,6 +26567,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
26541
26567
|
this.Width = 'Width' in params ? params.Width : null;
|
|
26542
26568
|
this.Codec = 'Codec' in params ? params.Codec : null;
|
|
26543
26569
|
this.Fps = 'Fps' in params ? params.Fps : null;
|
|
26570
|
+
this.CodecTag = 'CodecTag' in params ? params.CodecTag : null;
|
|
26544
26571
|
|
|
26545
26572
|
}
|
|
26546
26573
|
}
|
|
@@ -1226,9 +1226,9 @@ If the current storage class is DEEP ARCHIVE, it can be changed to the following
|
|
|
1226
1226
|
}
|
|
1227
1227
|
|
|
1228
1228
|
/**
|
|
1229
|
-
* This API is used to start a moderation task on a file stored in VOD to detect non-compliant content in images, text, and
|
|
1229
|
+
* This API is used to start a moderation task on a file stored in VOD to detect non-compliant content in images, text, speech, and voice.
|
|
1230
1230
|
|
|
1231
|
-
If event notifications are used, the event type is [
|
|
1231
|
+
If event notifications are used, the event type is [ReviewAudioVideoComplete](https://intl.cloud.tencent.com/document/product/266/81258?from_cn_redirect=1).
|
|
1232
1232
|
|
|
1233
1233
|
* @param {ReviewAudioVideoRequest} req
|
|
1234
1234
|
* @param {function(string, ReviewAudioVideoResponse):void} cb
|