tencentcloud-sdk-python-mps 3.0.854__tar.gz → 3.0.855__tar.gz
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.
- {tencentcloud-sdk-python-mps-3.0.854 → tencentcloud-sdk-python-mps-3.0.855}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-mps-3.0.854 → tencentcloud-sdk-python-mps-3.0.855}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-mps-3.0.854 → tencentcloud-sdk-python-mps-3.0.855}/tencentcloud/mps/v20190612/models.py +10 -0
- {tencentcloud-sdk-python-mps-3.0.854 → tencentcloud-sdk-python-mps-3.0.855}/tencentcloud_sdk_python_mps.egg-info/PKG-INFO +1 -1
- {tencentcloud-sdk-python-mps-3.0.854 → tencentcloud-sdk-python-mps-3.0.855}/README.rst +0 -0
- {tencentcloud-sdk-python-mps-3.0.854 → tencentcloud-sdk-python-mps-3.0.855}/setup.cfg +0 -0
- {tencentcloud-sdk-python-mps-3.0.854 → tencentcloud-sdk-python-mps-3.0.855}/setup.py +0 -0
- {tencentcloud-sdk-python-mps-3.0.854 → tencentcloud-sdk-python-mps-3.0.855}/tencentcloud/mps/__init__.py +0 -0
- {tencentcloud-sdk-python-mps-3.0.854 → tencentcloud-sdk-python-mps-3.0.855}/tencentcloud/mps/v20190612/__init__.py +0 -0
- {tencentcloud-sdk-python-mps-3.0.854 → tencentcloud-sdk-python-mps-3.0.855}/tencentcloud/mps/v20190612/errorcodes.py +0 -0
- {tencentcloud-sdk-python-mps-3.0.854 → tencentcloud-sdk-python-mps-3.0.855}/tencentcloud/mps/v20190612/mps_client.py +0 -0
- {tencentcloud-sdk-python-mps-3.0.854 → tencentcloud-sdk-python-mps-3.0.855}/tencentcloud_sdk_python_mps.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-mps-3.0.854 → tencentcloud-sdk-python-mps-3.0.855}/tencentcloud_sdk_python_mps.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-mps-3.0.854 → tencentcloud-sdk-python-mps-3.0.855}/tencentcloud_sdk_python_mps.egg-info/top_level.txt +0 -0
|
@@ -15528,6 +15528,9 @@ class OverrideTranscodeParameter(AbstractModel):
|
|
|
15528
15528
|
:type TEHDConfig: :class:`tencentcloud.mps.v20190612.models.TEHDConfigForUpdate`
|
|
15529
15529
|
:param SubtitleTemplate: 字幕流配置参数。
|
|
15530
15530
|
:type SubtitleTemplate: :class:`tencentcloud.mps.v20190612.models.SubtitleTemplate`
|
|
15531
|
+
:param AddonAudioStream: 外挂音轨参数。
|
|
15532
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15533
|
+
:type AddonAudioStream: list of MediaInputInfo
|
|
15531
15534
|
"""
|
|
15532
15535
|
self.Container = None
|
|
15533
15536
|
self.RemoveVideo = None
|
|
@@ -15536,6 +15539,7 @@ class OverrideTranscodeParameter(AbstractModel):
|
|
|
15536
15539
|
self.AudioTemplate = None
|
|
15537
15540
|
self.TEHDConfig = None
|
|
15538
15541
|
self.SubtitleTemplate = None
|
|
15542
|
+
self.AddonAudioStream = None
|
|
15539
15543
|
|
|
15540
15544
|
|
|
15541
15545
|
def _deserialize(self, params):
|
|
@@ -15554,6 +15558,12 @@ class OverrideTranscodeParameter(AbstractModel):
|
|
|
15554
15558
|
if params.get("SubtitleTemplate") is not None:
|
|
15555
15559
|
self.SubtitleTemplate = SubtitleTemplate()
|
|
15556
15560
|
self.SubtitleTemplate._deserialize(params.get("SubtitleTemplate"))
|
|
15561
|
+
if params.get("AddonAudioStream") is not None:
|
|
15562
|
+
self.AddonAudioStream = []
|
|
15563
|
+
for item in params.get("AddonAudioStream"):
|
|
15564
|
+
obj = MediaInputInfo()
|
|
15565
|
+
obj._deserialize(item)
|
|
15566
|
+
self.AddonAudioStream.append(obj)
|
|
15557
15567
|
memeber_set = set(params.keys())
|
|
15558
15568
|
for name, value in vars(self).items():
|
|
15559
15569
|
if name in memeber_set:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|