tencentcloud-sdk-python-vclm 3.0.1416__py2.py3-none-any.whl → 3.0.1430__py2.py3-none-any.whl
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/__init__.py +1 -1
- tencentcloud/vclm/v20240523/models.py +17 -28
- {tencentcloud_sdk_python_vclm-3.0.1416.dist-info → tencentcloud_sdk_python_vclm-3.0.1430.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_vclm-3.0.1430.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_vclm-3.0.1416.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_vclm-3.0.1416.dist-info → tencentcloud_sdk_python_vclm-3.0.1430.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_vclm-3.0.1416.dist-info → tencentcloud_sdk_python_vclm-3.0.1430.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -1409,20 +1409,7 @@ class SubmitTemplateToVideoJobRequest(AbstractModel):
|
|
1409
1409
|
|
1410
1410
|
def __init__(self):
|
1411
1411
|
r"""
|
1412
|
-
:param _Template:
|
1413
|
-
枚举值:
|
1414
|
-
hug :拥抱
|
1415
|
-
kiss :亲吻
|
1416
|
-
heart : 比心
|
1417
|
-
fuzzy : 毛茸茸
|
1418
|
-
befigure:变手办风
|
1419
|
-
longhair:金色长发
|
1420
|
-
morphlab:膨胀
|
1421
|
-
bloom:万物生花
|
1422
|
-
pinch:捏捏
|
1423
|
-
balloonfly:飞走了
|
1424
|
-
dragme:被拽走了
|
1425
|
-
|
1412
|
+
:param _Template: 特效模板名称。请在 [视频特效模版列表](https://cloud.tencent.com/document/product/1616/119194) 中选择想要生成的特效对应的 template 名称。
|
1426
1413
|
:type Template: str
|
1427
1414
|
:param _Images: 参考图像,最多输入2张图。
|
1428
1415
|
- 支持传入图片Base64编码或图片URL(确保可访问)
|
@@ -1439,28 +1426,18 @@ dragme:被拽走了
|
|
1439
1426
|
:param _LogoParam: 标识内容设置。
|
1440
1427
|
默认在生成视频的右下角添加“视频由 AI 生成”字样,您可根据自身需要替换为其他的标识图片。
|
1441
1428
|
:type LogoParam: :class:`tencentcloud.vclm.v20240523.models.LogoParam`
|
1429
|
+
:param _Resolution: 视频输出分辨率,默认值:360p - 枚举值: 720p 360p。
|
1430
|
+
:type Resolution: str
|
1442
1431
|
"""
|
1443
1432
|
self._Template = None
|
1444
1433
|
self._Images = None
|
1445
1434
|
self._LogoAdd = None
|
1446
1435
|
self._LogoParam = None
|
1436
|
+
self._Resolution = None
|
1447
1437
|
|
1448
1438
|
@property
|
1449
1439
|
def Template(self):
|
1450
|
-
"""
|
1451
|
-
枚举值:
|
1452
|
-
hug :拥抱
|
1453
|
-
kiss :亲吻
|
1454
|
-
heart : 比心
|
1455
|
-
fuzzy : 毛茸茸
|
1456
|
-
befigure:变手办风
|
1457
|
-
longhair:金色长发
|
1458
|
-
morphlab:膨胀
|
1459
|
-
bloom:万物生花
|
1460
|
-
pinch:捏捏
|
1461
|
-
balloonfly:飞走了
|
1462
|
-
dragme:被拽走了
|
1463
|
-
|
1440
|
+
"""特效模板名称。请在 [视频特效模版列表](https://cloud.tencent.com/document/product/1616/119194) 中选择想要生成的特效对应的 template 名称。
|
1464
1441
|
:rtype: str
|
1465
1442
|
"""
|
1466
1443
|
return self._Template
|
@@ -1511,6 +1488,17 @@ dragme:被拽走了
|
|
1511
1488
|
def LogoParam(self, LogoParam):
|
1512
1489
|
self._LogoParam = LogoParam
|
1513
1490
|
|
1491
|
+
@property
|
1492
|
+
def Resolution(self):
|
1493
|
+
"""视频输出分辨率,默认值:360p - 枚举值: 720p 360p。
|
1494
|
+
:rtype: str
|
1495
|
+
"""
|
1496
|
+
return self._Resolution
|
1497
|
+
|
1498
|
+
@Resolution.setter
|
1499
|
+
def Resolution(self, Resolution):
|
1500
|
+
self._Resolution = Resolution
|
1501
|
+
|
1514
1502
|
|
1515
1503
|
def _deserialize(self, params):
|
1516
1504
|
self._Template = params.get("Template")
|
@@ -1524,6 +1512,7 @@ dragme:被拽走了
|
|
1524
1512
|
if params.get("LogoParam") is not None:
|
1525
1513
|
self._LogoParam = LogoParam()
|
1526
1514
|
self._LogoParam._deserialize(params.get("LogoParam"))
|
1515
|
+
self._Resolution = params.get("Resolution")
|
1527
1516
|
memeber_set = set(params.keys())
|
1528
1517
|
for name, value in vars(self).items():
|
1529
1518
|
property_name = name[1:]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tencentcloud-sdk-python-vclm
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1430
|
4
4
|
Summary: Tencent Cloud Vclm 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 (
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (<4.0.0,>=3.0.1430)
|
19
19
|
|
20
20
|
============================
|
21
21
|
Tencent Cloud SDK for Python
|
@@ -0,0 +1,10 @@
|
|
1
|
+
tencentcloud/__init__.py,sha256=THtEC9RVjjpuxEAztaLa_v8rp_IiC7HNUqE3juB28bE,631
|
2
|
+
tencentcloud/vclm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
+
tencentcloud/vclm/v20240523/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
+
tencentcloud/vclm/v20240523/errorcodes.py,sha256=eJ_NuiNRehzFdsVSkNgrmitfU9eYucOOTV28ABTGLI4,7384
|
5
|
+
tencentcloud/vclm/v20240523/models.py,sha256=i_lsEPgocvTxuY1BKi2TK_T3LE60IlX_IVZAVUbcHog,55519
|
6
|
+
tencentcloud/vclm/v20240523/vclm_client.py,sha256=KzHKYXxy4JOc_GxaH-3CrFOWnv8o9zM5NcxRFkGNvLI,10142
|
7
|
+
tencentcloud_sdk_python_vclm-3.0.1430.dist-info/METADATA,sha256=SvSs9Zg3ynuw22OOR6UpQ3fdVDO3_ZmFWr589-8Fe04,1508
|
8
|
+
tencentcloud_sdk_python_vclm-3.0.1430.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
9
|
+
tencentcloud_sdk_python_vclm-3.0.1430.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
10
|
+
tencentcloud_sdk_python_vclm-3.0.1430.dist-info/RECORD,,
|
@@ -1,10 +0,0 @@
|
|
1
|
-
tencentcloud/__init__.py,sha256=-3wPg6USRRdvHHmZ1D-kvX873GrUeYC1aT5yHZA0Mk0,631
|
2
|
-
tencentcloud/vclm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
-
tencentcloud/vclm/v20240523/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
-
tencentcloud/vclm/v20240523/errorcodes.py,sha256=eJ_NuiNRehzFdsVSkNgrmitfU9eYucOOTV28ABTGLI4,7384
|
5
|
-
tencentcloud/vclm/v20240523/models.py,sha256=HHmVjNuqrv3TvNCvHM727YcQ2PKswwCsaxnCJDQc-PU,55173
|
6
|
-
tencentcloud/vclm/v20240523/vclm_client.py,sha256=KzHKYXxy4JOc_GxaH-3CrFOWnv8o9zM5NcxRFkGNvLI,10142
|
7
|
-
tencentcloud_sdk_python_vclm-3.0.1416.dist-info/METADATA,sha256=0sOO-VLSwBXivajMJe3MgghQwELl7oiapGdy0E6EwPY,1501
|
8
|
-
tencentcloud_sdk_python_vclm-3.0.1416.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
9
|
-
tencentcloud_sdk_python_vclm-3.0.1416.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
10
|
-
tencentcloud_sdk_python_vclm-3.0.1416.dist-info/RECORD,,
|
File without changes
|
File without changes
|