tencentcloud-sdk-python-mps 3.1.134__tar.gz → 3.1.135__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.1.134 → tencentcloud_sdk_python_mps-3.1.135}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_mps-3.1.134 → tencentcloud_sdk_python_mps-3.1.135}/setup.py +1 -1
- {tencentcloud_sdk_python_mps-3.1.134 → tencentcloud_sdk_python_mps-3.1.135}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_mps-3.1.134 → tencentcloud_sdk_python_mps-3.1.135}/tencentcloud/mps/v20190612/models.py +21 -6
- {tencentcloud_sdk_python_mps-3.1.134 → tencentcloud_sdk_python_mps-3.1.135}/tencentcloud_sdk_python_mps.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_mps-3.1.135/tencentcloud_sdk_python_mps.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_mps-3.1.134/tencentcloud_sdk_python_mps.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_mps-3.1.134 → tencentcloud_sdk_python_mps-3.1.135}/README.rst +0 -0
- {tencentcloud_sdk_python_mps-3.1.134 → tencentcloud_sdk_python_mps-3.1.135}/setup.cfg +0 -0
- {tencentcloud_sdk_python_mps-3.1.134 → tencentcloud_sdk_python_mps-3.1.135}/tencentcloud/mps/__init__.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.134 → tencentcloud_sdk_python_mps-3.1.135}/tencentcloud/mps/v20190612/__init__.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.134 → tencentcloud_sdk_python_mps-3.1.135}/tencentcloud/mps/v20190612/errorcodes.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.134 → tencentcloud_sdk_python_mps-3.1.135}/tencentcloud/mps/v20190612/mps_client.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.134 → tencentcloud_sdk_python_mps-3.1.135}/tencentcloud/mps/v20190612/mps_client_async.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.134 → tencentcloud_sdk_python_mps-3.1.135}/tencentcloud_sdk_python_mps.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_mps-3.1.134 → tencentcloud_sdk_python_mps-3.1.135}/tencentcloud_sdk_python_mps.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_mps-3.1.134 → tencentcloud_sdk_python_mps-3.1.135}/tencentcloud_sdk_python_mps.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-mps
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.135
|
|
4
4
|
Summary: Tencent Cloud Mps SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.135
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-mps',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.135,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Mps SDK for Python',
|
|
@@ -4300,11 +4300,14 @@ class AiAnalysisTaskDubbingOutput(AbstractModel):
|
|
|
4300
4300
|
:type VoiceId: str
|
|
4301
4301
|
:param _OutputStorage: <p>译制视频存储位置。</p>
|
|
4302
4302
|
:type OutputStorage: :class:`tencentcloud.mps.v20190612.models.TaskOutputStorage`
|
|
4303
|
+
:param _ExtraOutput: <p>额外结果,目前包含字幕文件结果 Url</p>
|
|
4304
|
+
:type ExtraOutput: str
|
|
4303
4305
|
"""
|
|
4304
4306
|
self._VideoPath = None
|
|
4305
4307
|
self._SpeakerPath = None
|
|
4306
4308
|
self._VoiceId = None
|
|
4307
4309
|
self._OutputStorage = None
|
|
4310
|
+
self._ExtraOutput = None
|
|
4308
4311
|
|
|
4309
4312
|
@property
|
|
4310
4313
|
def VideoPath(self):
|
|
@@ -4350,6 +4353,17 @@ class AiAnalysisTaskDubbingOutput(AbstractModel):
|
|
|
4350
4353
|
def OutputStorage(self, OutputStorage):
|
|
4351
4354
|
self._OutputStorage = OutputStorage
|
|
4352
4355
|
|
|
4356
|
+
@property
|
|
4357
|
+
def ExtraOutput(self):
|
|
4358
|
+
r"""<p>额外结果,目前包含字幕文件结果 Url</p>
|
|
4359
|
+
:rtype: str
|
|
4360
|
+
"""
|
|
4361
|
+
return self._ExtraOutput
|
|
4362
|
+
|
|
4363
|
+
@ExtraOutput.setter
|
|
4364
|
+
def ExtraOutput(self, ExtraOutput):
|
|
4365
|
+
self._ExtraOutput = ExtraOutput
|
|
4366
|
+
|
|
4353
4367
|
|
|
4354
4368
|
def _deserialize(self, params):
|
|
4355
4369
|
self._VideoPath = params.get("VideoPath")
|
|
@@ -4358,6 +4372,7 @@ class AiAnalysisTaskDubbingOutput(AbstractModel):
|
|
|
4358
4372
|
if params.get("OutputStorage") is not None:
|
|
4359
4373
|
self._OutputStorage = TaskOutputStorage()
|
|
4360
4374
|
self._OutputStorage._deserialize(params.get("OutputStorage"))
|
|
4375
|
+
self._ExtraOutput = params.get("ExtraOutput")
|
|
4361
4376
|
memeber_set = set(params.keys())
|
|
4362
4377
|
for name, value in vars(self).items():
|
|
4363
4378
|
property_name = name[1:]
|
|
@@ -90506,11 +90521,11 @@ class VODOutputStorage(AbstractModel):
|
|
|
90506
90521
|
|
|
90507
90522
|
def __init__(self):
|
|
90508
90523
|
r"""
|
|
90509
|
-
:param _Bucket:
|
|
90524
|
+
:param _Bucket: <p>媒体处理生成的文件输出的目标 <em>Bucket ID</em></p>
|
|
90510
90525
|
:type Bucket: str
|
|
90511
|
-
:param _Region:
|
|
90526
|
+
:param _Region: <p>媒体处理生成的文件输出的目标 Bucket 的园区</p>
|
|
90512
90527
|
:type Region: str
|
|
90513
|
-
:param _SubAppId:
|
|
90528
|
+
:param _SubAppId: <p>点播专业版应用Id</p>
|
|
90514
90529
|
:type SubAppId: int
|
|
90515
90530
|
"""
|
|
90516
90531
|
self._Bucket = None
|
|
@@ -90519,7 +90534,7 @@ class VODOutputStorage(AbstractModel):
|
|
|
90519
90534
|
|
|
90520
90535
|
@property
|
|
90521
90536
|
def Bucket(self):
|
|
90522
|
-
r"""
|
|
90537
|
+
r"""<p>媒体处理生成的文件输出的目标 <em>Bucket ID</em></p>
|
|
90523
90538
|
:rtype: str
|
|
90524
90539
|
"""
|
|
90525
90540
|
return self._Bucket
|
|
@@ -90530,7 +90545,7 @@ class VODOutputStorage(AbstractModel):
|
|
|
90530
90545
|
|
|
90531
90546
|
@property
|
|
90532
90547
|
def Region(self):
|
|
90533
|
-
r"""
|
|
90548
|
+
r"""<p>媒体处理生成的文件输出的目标 Bucket 的园区</p>
|
|
90534
90549
|
:rtype: str
|
|
90535
90550
|
"""
|
|
90536
90551
|
return self._Region
|
|
@@ -90541,7 +90556,7 @@ class VODOutputStorage(AbstractModel):
|
|
|
90541
90556
|
|
|
90542
90557
|
@property
|
|
90543
90558
|
def SubAppId(self):
|
|
90544
|
-
r"""
|
|
90559
|
+
r"""<p>点播专业版应用Id</p>
|
|
90545
90560
|
:rtype: int
|
|
90546
90561
|
"""
|
|
90547
90562
|
return self._SubAppId
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-mps
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.135
|
|
4
4
|
Summary: Tencent Cloud Mps SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.135
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.135
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.134
|
|
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
|