tencentcloud-sdk-python-mps 3.0.1184__tar.gz → 3.0.1185__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.1184 → tencentcloud-sdk-python-mps-3.0.1185}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-mps-3.0.1184 → tencentcloud-sdk-python-mps-3.0.1185}/setup.py +1 -1
- {tencentcloud-sdk-python-mps-3.0.1184 → tencentcloud-sdk-python-mps-3.0.1185}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-mps-3.0.1184 → tencentcloud-sdk-python-mps-3.0.1185}/tencentcloud/mps/v20190612/models.py +26 -0
- {tencentcloud-sdk-python-mps-3.0.1184 → tencentcloud-sdk-python-mps-3.0.1185}/tencentcloud_sdk_python_mps.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-mps-3.0.1185/tencentcloud_sdk_python_mps.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-mps-3.0.1184/tencentcloud_sdk_python_mps.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-mps-3.0.1184 → tencentcloud-sdk-python-mps-3.0.1185}/README.rst +0 -0
- {tencentcloud-sdk-python-mps-3.0.1184 → tencentcloud-sdk-python-mps-3.0.1185}/setup.cfg +0 -0
- {tencentcloud-sdk-python-mps-3.0.1184 → tencentcloud-sdk-python-mps-3.0.1185}/tencentcloud/mps/__init__.py +0 -0
- {tencentcloud-sdk-python-mps-3.0.1184 → tencentcloud-sdk-python-mps-3.0.1185}/tencentcloud/mps/v20190612/__init__.py +0 -0
- {tencentcloud-sdk-python-mps-3.0.1184 → tencentcloud-sdk-python-mps-3.0.1185}/tencentcloud/mps/v20190612/errorcodes.py +0 -0
- {tencentcloud-sdk-python-mps-3.0.1184 → tencentcloud-sdk-python-mps-3.0.1185}/tencentcloud/mps/v20190612/mps_client.py +0 -0
- {tencentcloud-sdk-python-mps-3.0.1184 → tencentcloud-sdk-python-mps-3.0.1185}/tencentcloud_sdk_python_mps.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-mps-3.0.1184 → tencentcloud-sdk-python-mps-3.0.1185}/tencentcloud_sdk_python_mps.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-mps-3.0.1184 → tencentcloud-sdk-python-mps-3.0.1185}/tencentcloud_sdk_python_mps.egg-info/top_level.txt +0 -0
|
@@ -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.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1185"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Mps SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1982,9 +1982,17 @@ class AiAnalysisTaskDelLogoOutput(AbstractModel):
|
|
|
1982
1982
|
:type Path: str
|
|
1983
1983
|
:param _OutputStorage: 擦除后文件的存储位置。
|
|
1984
1984
|
:type OutputStorage: :class:`tencentcloud.mps.v20190612.models.TaskOutputStorage`
|
|
1985
|
+
:param _OriginSubtitlePath: 基于画面提取的字幕文件路径。
|
|
1986
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1987
|
+
:type OriginSubtitlePath: str
|
|
1988
|
+
:param _TranslateSubtitlePath: 基于画面提取的字幕翻译文件路径。
|
|
1989
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1990
|
+
:type TranslateSubtitlePath: str
|
|
1985
1991
|
"""
|
|
1986
1992
|
self._Path = None
|
|
1987
1993
|
self._OutputStorage = None
|
|
1994
|
+
self._OriginSubtitlePath = None
|
|
1995
|
+
self._TranslateSubtitlePath = None
|
|
1988
1996
|
|
|
1989
1997
|
@property
|
|
1990
1998
|
def Path(self):
|
|
@@ -2002,12 +2010,30 @@ class AiAnalysisTaskDelLogoOutput(AbstractModel):
|
|
|
2002
2010
|
def OutputStorage(self, OutputStorage):
|
|
2003
2011
|
self._OutputStorage = OutputStorage
|
|
2004
2012
|
|
|
2013
|
+
@property
|
|
2014
|
+
def OriginSubtitlePath(self):
|
|
2015
|
+
return self._OriginSubtitlePath
|
|
2016
|
+
|
|
2017
|
+
@OriginSubtitlePath.setter
|
|
2018
|
+
def OriginSubtitlePath(self, OriginSubtitlePath):
|
|
2019
|
+
self._OriginSubtitlePath = OriginSubtitlePath
|
|
2020
|
+
|
|
2021
|
+
@property
|
|
2022
|
+
def TranslateSubtitlePath(self):
|
|
2023
|
+
return self._TranslateSubtitlePath
|
|
2024
|
+
|
|
2025
|
+
@TranslateSubtitlePath.setter
|
|
2026
|
+
def TranslateSubtitlePath(self, TranslateSubtitlePath):
|
|
2027
|
+
self._TranslateSubtitlePath = TranslateSubtitlePath
|
|
2028
|
+
|
|
2005
2029
|
|
|
2006
2030
|
def _deserialize(self, params):
|
|
2007
2031
|
self._Path = params.get("Path")
|
|
2008
2032
|
if params.get("OutputStorage") is not None:
|
|
2009
2033
|
self._OutputStorage = TaskOutputStorage()
|
|
2010
2034
|
self._OutputStorage._deserialize(params.get("OutputStorage"))
|
|
2035
|
+
self._OriginSubtitlePath = params.get("OriginSubtitlePath")
|
|
2036
|
+
self._TranslateSubtitlePath = params.get("TranslateSubtitlePath")
|
|
2011
2037
|
memeber_set = set(params.keys())
|
|
2012
2038
|
for name, value in vars(self).items():
|
|
2013
2039
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1185
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1184
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|