tencentcloud-sdk-python-vclm 3.0.1419__tar.gz → 3.0.1448__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-vclm-3.0.1419 → tencentcloud-sdk-python-vclm-3.0.1448}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-vclm-3.0.1419 → tencentcloud-sdk-python-vclm-3.0.1448}/setup.py +1 -1
- {tencentcloud-sdk-python-vclm-3.0.1419 → tencentcloud-sdk-python-vclm-3.0.1448}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-vclm-3.0.1419 → tencentcloud-sdk-python-vclm-3.0.1448}/tencentcloud/vclm/v20240523/models.py +30 -0
- {tencentcloud-sdk-python-vclm-3.0.1419 → tencentcloud-sdk-python-vclm-3.0.1448}/tencentcloud_sdk_python_vclm.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-vclm-3.0.1448/tencentcloud_sdk_python_vclm.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-vclm-3.0.1419/tencentcloud_sdk_python_vclm.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-vclm-3.0.1419 → tencentcloud-sdk-python-vclm-3.0.1448}/README.rst +0 -0
- {tencentcloud-sdk-python-vclm-3.0.1419 → tencentcloud-sdk-python-vclm-3.0.1448}/setup.cfg +0 -0
- {tencentcloud-sdk-python-vclm-3.0.1419 → tencentcloud-sdk-python-vclm-3.0.1448}/tencentcloud/vclm/__init__.py +0 -0
- {tencentcloud-sdk-python-vclm-3.0.1419 → tencentcloud-sdk-python-vclm-3.0.1448}/tencentcloud/vclm/v20240523/__init__.py +0 -0
- {tencentcloud-sdk-python-vclm-3.0.1419 → tencentcloud-sdk-python-vclm-3.0.1448}/tencentcloud/vclm/v20240523/errorcodes.py +0 -0
- {tencentcloud-sdk-python-vclm-3.0.1419 → tencentcloud-sdk-python-vclm-3.0.1448}/tencentcloud/vclm/v20240523/vclm_client.py +0 -0
- {tencentcloud-sdk-python-vclm-3.0.1419 → tencentcloud-sdk-python-vclm-3.0.1448}/tencentcloud_sdk_python_vclm.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-vclm-3.0.1419 → tencentcloud-sdk-python-vclm-3.0.1448}/tencentcloud_sdk_python_vclm.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-vclm-3.0.1419 → tencentcloud-sdk-python-vclm-3.0.1448}/tencentcloud_sdk_python_vclm.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-vclm',
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.0.
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1448,<4.0.0"],
|
12
12
|
version=tencentcloud.__version__,
|
13
13
|
description='Tencent Cloud Vclm SDK for Python',
|
14
14
|
long_description=open('README.rst').read(),
|
@@ -1426,11 +1426,17 @@ class SubmitTemplateToVideoJobRequest(AbstractModel):
|
|
1426
1426
|
:param _LogoParam: 标识内容设置。
|
1427
1427
|
默认在生成视频的右下角添加“视频由 AI 生成”字样,您可根据自身需要替换为其他的标识图片。
|
1428
1428
|
:type LogoParam: :class:`tencentcloud.vclm.v20240523.models.LogoParam`
|
1429
|
+
:param _Resolution: 视频输出分辨率,默认值:360p - 枚举值: 720p 360p。
|
1430
|
+
:type Resolution: str
|
1431
|
+
:param _BGM: 是否为生成的视频添加背景音乐。默认:false, 传 true 时系统将从预设 BGM 库中自动挑选合适的音乐并添加;不传或为 false 则不添加 BGM。
|
1432
|
+
:type BGM: bool
|
1429
1433
|
"""
|
1430
1434
|
self._Template = None
|
1431
1435
|
self._Images = None
|
1432
1436
|
self._LogoAdd = None
|
1433
1437
|
self._LogoParam = None
|
1438
|
+
self._Resolution = None
|
1439
|
+
self._BGM = None
|
1434
1440
|
|
1435
1441
|
@property
|
1436
1442
|
def Template(self):
|
@@ -1485,6 +1491,28 @@ class SubmitTemplateToVideoJobRequest(AbstractModel):
|
|
1485
1491
|
def LogoParam(self, LogoParam):
|
1486
1492
|
self._LogoParam = LogoParam
|
1487
1493
|
|
1494
|
+
@property
|
1495
|
+
def Resolution(self):
|
1496
|
+
"""视频输出分辨率,默认值:360p - 枚举值: 720p 360p。
|
1497
|
+
:rtype: str
|
1498
|
+
"""
|
1499
|
+
return self._Resolution
|
1500
|
+
|
1501
|
+
@Resolution.setter
|
1502
|
+
def Resolution(self, Resolution):
|
1503
|
+
self._Resolution = Resolution
|
1504
|
+
|
1505
|
+
@property
|
1506
|
+
def BGM(self):
|
1507
|
+
"""是否为生成的视频添加背景音乐。默认:false, 传 true 时系统将从预设 BGM 库中自动挑选合适的音乐并添加;不传或为 false 则不添加 BGM。
|
1508
|
+
:rtype: bool
|
1509
|
+
"""
|
1510
|
+
return self._BGM
|
1511
|
+
|
1512
|
+
@BGM.setter
|
1513
|
+
def BGM(self, BGM):
|
1514
|
+
self._BGM = BGM
|
1515
|
+
|
1488
1516
|
|
1489
1517
|
def _deserialize(self, params):
|
1490
1518
|
self._Template = params.get("Template")
|
@@ -1498,6 +1526,8 @@ class SubmitTemplateToVideoJobRequest(AbstractModel):
|
|
1498
1526
|
if params.get("LogoParam") is not None:
|
1499
1527
|
self._LogoParam = LogoParam()
|
1500
1528
|
self._LogoParam._deserialize(params.get("LogoParam"))
|
1529
|
+
self._Resolution = params.get("Resolution")
|
1530
|
+
self._BGM = params.get("BGM")
|
1501
1531
|
memeber_set = set(params.keys())
|
1502
1532
|
for name, value in vars(self).items():
|
1503
1533
|
property_name = name[1:]
|
@@ -0,0 +1 @@
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1448
|
@@ -1 +0,0 @@
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1419
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|