tencentcloud-sdk-python-mps 3.1.136__tar.gz → 3.1.137__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.136 → tencentcloud_sdk_python_mps-3.1.137}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_mps-3.1.136 → tencentcloud_sdk_python_mps-3.1.137}/setup.py +1 -1
- {tencentcloud_sdk_python_mps-3.1.136 → tencentcloud_sdk_python_mps-3.1.137}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_mps-3.1.136 → tencentcloud_sdk_python_mps-3.1.137}/tencentcloud/mps/v20190612/models.py +53 -0
- {tencentcloud_sdk_python_mps-3.1.136 → tencentcloud_sdk_python_mps-3.1.137}/tencentcloud_sdk_python_mps.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_mps-3.1.137/tencentcloud_sdk_python_mps.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_mps-3.1.136/tencentcloud_sdk_python_mps.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_mps-3.1.136 → tencentcloud_sdk_python_mps-3.1.137}/README.rst +0 -0
- {tencentcloud_sdk_python_mps-3.1.136 → tencentcloud_sdk_python_mps-3.1.137}/setup.cfg +0 -0
- {tencentcloud_sdk_python_mps-3.1.136 → tencentcloud_sdk_python_mps-3.1.137}/tencentcloud/mps/__init__.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.136 → tencentcloud_sdk_python_mps-3.1.137}/tencentcloud/mps/v20190612/__init__.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.136 → tencentcloud_sdk_python_mps-3.1.137}/tencentcloud/mps/v20190612/errorcodes.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.136 → tencentcloud_sdk_python_mps-3.1.137}/tencentcloud/mps/v20190612/mps_client.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.136 → tencentcloud_sdk_python_mps-3.1.137}/tencentcloud/mps/v20190612/mps_client_async.py +0 -0
- {tencentcloud_sdk_python_mps-3.1.136 → tencentcloud_sdk_python_mps-3.1.137}/tencentcloud_sdk_python_mps.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_mps-3.1.136 → tencentcloud_sdk_python_mps-3.1.137}/tencentcloud_sdk_python_mps.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_mps-3.1.136 → tencentcloud_sdk_python_mps-3.1.137}/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.137
|
|
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.137
|
|
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.137,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Mps SDK for Python',
|
|
@@ -27916,9 +27916,12 @@ class CreateVideoRedrawTaskRequest(AbstractModel):
|
|
|
27916
27916
|
:type Input: :class:`tencentcloud.mps.v20190612.models.VideoRedrawInput`
|
|
27917
27917
|
:param _CosInfo: <p>用户cos信息,用于保存生成结果</p>
|
|
27918
27918
|
:type CosInfo: :class:`tencentcloud.mps.v20190612.models.VideoRedrawCosInfo`
|
|
27919
|
+
:param _TaskInfo: <p>ai转绘任务信息</p>
|
|
27920
|
+
:type TaskInfo: :class:`tencentcloud.mps.v20190612.models.VideoRedrawTaskInfo`
|
|
27919
27921
|
"""
|
|
27920
27922
|
self._Input = None
|
|
27921
27923
|
self._CosInfo = None
|
|
27924
|
+
self._TaskInfo = None
|
|
27922
27925
|
|
|
27923
27926
|
@property
|
|
27924
27927
|
def Input(self):
|
|
@@ -27942,6 +27945,17 @@ class CreateVideoRedrawTaskRequest(AbstractModel):
|
|
|
27942
27945
|
def CosInfo(self, CosInfo):
|
|
27943
27946
|
self._CosInfo = CosInfo
|
|
27944
27947
|
|
|
27948
|
+
@property
|
|
27949
|
+
def TaskInfo(self):
|
|
27950
|
+
r"""<p>ai转绘任务信息</p>
|
|
27951
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.VideoRedrawTaskInfo`
|
|
27952
|
+
"""
|
|
27953
|
+
return self._TaskInfo
|
|
27954
|
+
|
|
27955
|
+
@TaskInfo.setter
|
|
27956
|
+
def TaskInfo(self, TaskInfo):
|
|
27957
|
+
self._TaskInfo = TaskInfo
|
|
27958
|
+
|
|
27945
27959
|
|
|
27946
27960
|
def _deserialize(self, params):
|
|
27947
27961
|
if params.get("Input") is not None:
|
|
@@ -27950,6 +27964,9 @@ class CreateVideoRedrawTaskRequest(AbstractModel):
|
|
|
27950
27964
|
if params.get("CosInfo") is not None:
|
|
27951
27965
|
self._CosInfo = VideoRedrawCosInfo()
|
|
27952
27966
|
self._CosInfo._deserialize(params.get("CosInfo"))
|
|
27967
|
+
if params.get("TaskInfo") is not None:
|
|
27968
|
+
self._TaskInfo = VideoRedrawTaskInfo()
|
|
27969
|
+
self._TaskInfo._deserialize(params.get("TaskInfo"))
|
|
27953
27970
|
memeber_set = set(params.keys())
|
|
27954
27971
|
for name, value in vars(self).items():
|
|
27955
27972
|
property_name = name[1:]
|
|
@@ -91835,6 +91852,42 @@ class VideoRedrawInput(AbstractModel):
|
|
|
91835
91852
|
|
|
91836
91853
|
|
|
91837
91854
|
|
|
91855
|
+
class VideoRedrawTaskInfo(AbstractModel):
|
|
91856
|
+
r"""Aigc 转绘、替换等任务参数
|
|
91857
|
+
|
|
91858
|
+
"""
|
|
91859
|
+
|
|
91860
|
+
def __init__(self):
|
|
91861
|
+
r"""
|
|
91862
|
+
:param _Style: <p>转绘视频风格,如动漫、赛博朋克、水墨等</p>
|
|
91863
|
+
:type Style: str
|
|
91864
|
+
"""
|
|
91865
|
+
self._Style = None
|
|
91866
|
+
|
|
91867
|
+
@property
|
|
91868
|
+
def Style(self):
|
|
91869
|
+
r"""<p>转绘视频风格,如动漫、赛博朋克、水墨等</p>
|
|
91870
|
+
:rtype: str
|
|
91871
|
+
"""
|
|
91872
|
+
return self._Style
|
|
91873
|
+
|
|
91874
|
+
@Style.setter
|
|
91875
|
+
def Style(self, Style):
|
|
91876
|
+
self._Style = Style
|
|
91877
|
+
|
|
91878
|
+
|
|
91879
|
+
def _deserialize(self, params):
|
|
91880
|
+
self._Style = params.get("Style")
|
|
91881
|
+
memeber_set = set(params.keys())
|
|
91882
|
+
for name, value in vars(self).items():
|
|
91883
|
+
property_name = name[1:]
|
|
91884
|
+
if property_name in memeber_set:
|
|
91885
|
+
memeber_set.remove(property_name)
|
|
91886
|
+
if len(memeber_set) > 0:
|
|
91887
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
91888
|
+
|
|
91889
|
+
|
|
91890
|
+
|
|
91838
91891
|
class VideoTemplateInfo(AbstractModel):
|
|
91839
91892
|
r"""视频流配置参数
|
|
91840
91893
|
|
|
@@ -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.137
|
|
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.137
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.137
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.136
|
|
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
|