alibabacloud-quanmiaolightapp20240801 2.12.0__py3-none-any.whl → 2.12.1__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.
- alibabacloud_quanmiaolightapp20240801/__init__.py +1 -1
- alibabacloud_quanmiaolightapp20240801/client.py +8 -0
- alibabacloud_quanmiaolightapp20240801/models.py +24 -0
- {alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info → alibabacloud_quanmiaolightapp20240801-2.12.1.dist-info}/METADATA +1 -1
- alibabacloud_quanmiaolightapp20240801-2.12.1.dist-info/RECORD +8 -0
- alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info/RECORD +0 -8
- {alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info → alibabacloud_quanmiaolightapp20240801-2.12.1.dist-info}/LICENSE +0 -0
- {alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info → alibabacloud_quanmiaolightapp20240801-2.12.1.dist-info}/WHEEL +0 -0
- {alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info → alibabacloud_quanmiaolightapp20240801-2.12.1.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '2.12.
|
|
1
|
+
__version__ = '2.12.1'
|
|
@@ -3410,6 +3410,8 @@ class Client(OpenApiClient):
|
|
|
3410
3410
|
body['snapshotInterval'] = request.snapshot_interval
|
|
3411
3411
|
if not UtilClient.is_unset(request.split_interval):
|
|
3412
3412
|
body['splitInterval'] = request.split_interval
|
|
3413
|
+
if not UtilClient.is_unset(request.split_type):
|
|
3414
|
+
body['splitType'] = request.split_type
|
|
3413
3415
|
if not UtilClient.is_unset(request.task_id):
|
|
3414
3416
|
body['taskId'] = request.task_id
|
|
3415
3417
|
if not UtilClient.is_unset(request.text_process_tasks_shrink):
|
|
@@ -3503,6 +3505,8 @@ class Client(OpenApiClient):
|
|
|
3503
3505
|
body['snapshotInterval'] = request.snapshot_interval
|
|
3504
3506
|
if not UtilClient.is_unset(request.split_interval):
|
|
3505
3507
|
body['splitInterval'] = request.split_interval
|
|
3508
|
+
if not UtilClient.is_unset(request.split_type):
|
|
3509
|
+
body['splitType'] = request.split_type
|
|
3506
3510
|
if not UtilClient.is_unset(request.task_id):
|
|
3507
3511
|
body['taskId'] = request.task_id
|
|
3508
3512
|
if not UtilClient.is_unset(request.text_process_tasks_shrink):
|
|
@@ -4082,6 +4086,8 @@ class Client(OpenApiClient):
|
|
|
4082
4086
|
body['snapshotInterval'] = request.snapshot_interval
|
|
4083
4087
|
if not UtilClient.is_unset(request.split_interval):
|
|
4084
4088
|
body['splitInterval'] = request.split_interval
|
|
4089
|
+
if not UtilClient.is_unset(request.split_type):
|
|
4090
|
+
body['splitType'] = request.split_type
|
|
4085
4091
|
if not UtilClient.is_unset(request.text_process_tasks_shrink):
|
|
4086
4092
|
body['textProcessTasks'] = request.text_process_tasks_shrink
|
|
4087
4093
|
if not UtilClient.is_unset(request.video_caption_info_shrink):
|
|
@@ -4173,6 +4179,8 @@ class Client(OpenApiClient):
|
|
|
4173
4179
|
body['snapshotInterval'] = request.snapshot_interval
|
|
4174
4180
|
if not UtilClient.is_unset(request.split_interval):
|
|
4175
4181
|
body['splitInterval'] = request.split_interval
|
|
4182
|
+
if not UtilClient.is_unset(request.split_type):
|
|
4183
|
+
body['splitType'] = request.split_type
|
|
4176
4184
|
if not UtilClient.is_unset(request.text_process_tasks_shrink):
|
|
4177
4185
|
body['textProcessTasks'] = request.text_process_tasks_shrink
|
|
4178
4186
|
if not UtilClient.is_unset(request.video_caption_info_shrink):
|
|
@@ -10241,6 +10241,7 @@ class RunVideoAnalysisRequest(TeaModel):
|
|
|
10241
10241
|
original_session_id: str = None,
|
|
10242
10242
|
snapshot_interval: float = None,
|
|
10243
10243
|
split_interval: int = None,
|
|
10244
|
+
split_type: str = None,
|
|
10244
10245
|
task_id: str = None,
|
|
10245
10246
|
text_process_tasks: List[RunVideoAnalysisRequestTextProcessTasks] = None,
|
|
10246
10247
|
video_caption_info: RunVideoAnalysisRequestVideoCaptionInfo = None,
|
|
@@ -10263,6 +10264,7 @@ class RunVideoAnalysisRequest(TeaModel):
|
|
|
10263
10264
|
self.original_session_id = original_session_id
|
|
10264
10265
|
self.snapshot_interval = snapshot_interval
|
|
10265
10266
|
self.split_interval = split_interval
|
|
10267
|
+
self.split_type = split_type
|
|
10266
10268
|
self.task_id = task_id
|
|
10267
10269
|
self.text_process_tasks = text_process_tasks
|
|
10268
10270
|
self.video_caption_info = video_caption_info
|
|
@@ -10317,6 +10319,8 @@ class RunVideoAnalysisRequest(TeaModel):
|
|
|
10317
10319
|
result['snapshotInterval'] = self.snapshot_interval
|
|
10318
10320
|
if self.split_interval is not None:
|
|
10319
10321
|
result['splitInterval'] = self.split_interval
|
|
10322
|
+
if self.split_type is not None:
|
|
10323
|
+
result['splitType'] = self.split_type
|
|
10320
10324
|
if self.task_id is not None:
|
|
10321
10325
|
result['taskId'] = self.task_id
|
|
10322
10326
|
result['textProcessTasks'] = []
|
|
@@ -10368,6 +10372,8 @@ class RunVideoAnalysisRequest(TeaModel):
|
|
|
10368
10372
|
self.snapshot_interval = m.get('snapshotInterval')
|
|
10369
10373
|
if m.get('splitInterval') is not None:
|
|
10370
10374
|
self.split_interval = m.get('splitInterval')
|
|
10375
|
+
if m.get('splitType') is not None:
|
|
10376
|
+
self.split_type = m.get('splitType')
|
|
10371
10377
|
if m.get('taskId') is not None:
|
|
10372
10378
|
self.task_id = m.get('taskId')
|
|
10373
10379
|
self.text_process_tasks = []
|
|
@@ -10411,6 +10417,7 @@ class RunVideoAnalysisShrinkRequest(TeaModel):
|
|
|
10411
10417
|
original_session_id: str = None,
|
|
10412
10418
|
snapshot_interval: float = None,
|
|
10413
10419
|
split_interval: int = None,
|
|
10420
|
+
split_type: str = None,
|
|
10414
10421
|
task_id: str = None,
|
|
10415
10422
|
text_process_tasks_shrink: str = None,
|
|
10416
10423
|
video_caption_info_shrink: str = None,
|
|
@@ -10433,6 +10440,7 @@ class RunVideoAnalysisShrinkRequest(TeaModel):
|
|
|
10433
10440
|
self.original_session_id = original_session_id
|
|
10434
10441
|
self.snapshot_interval = snapshot_interval
|
|
10435
10442
|
self.split_interval = split_interval
|
|
10443
|
+
self.split_type = split_type
|
|
10436
10444
|
self.task_id = task_id
|
|
10437
10445
|
self.text_process_tasks_shrink = text_process_tasks_shrink
|
|
10438
10446
|
self.video_caption_info_shrink = video_caption_info_shrink
|
|
@@ -10476,6 +10484,8 @@ class RunVideoAnalysisShrinkRequest(TeaModel):
|
|
|
10476
10484
|
result['snapshotInterval'] = self.snapshot_interval
|
|
10477
10485
|
if self.split_interval is not None:
|
|
10478
10486
|
result['splitInterval'] = self.split_interval
|
|
10487
|
+
if self.split_type is not None:
|
|
10488
|
+
result['splitType'] = self.split_type
|
|
10479
10489
|
if self.task_id is not None:
|
|
10480
10490
|
result['taskId'] = self.task_id
|
|
10481
10491
|
if self.text_process_tasks_shrink is not None:
|
|
@@ -10522,6 +10532,8 @@ class RunVideoAnalysisShrinkRequest(TeaModel):
|
|
|
10522
10532
|
self.snapshot_interval = m.get('snapshotInterval')
|
|
10523
10533
|
if m.get('splitInterval') is not None:
|
|
10524
10534
|
self.split_interval = m.get('splitInterval')
|
|
10535
|
+
if m.get('splitType') is not None:
|
|
10536
|
+
self.split_type = m.get('splitType')
|
|
10525
10537
|
if m.get('taskId') is not None:
|
|
10526
10538
|
self.task_id = m.get('taskId')
|
|
10527
10539
|
if m.get('textProcessTasks') is not None:
|
|
@@ -13215,6 +13227,7 @@ class SubmitVideoAnalysisTaskRequest(TeaModel):
|
|
|
13215
13227
|
model_id: str = None,
|
|
13216
13228
|
snapshot_interval: float = None,
|
|
13217
13229
|
split_interval: int = None,
|
|
13230
|
+
split_type: str = None,
|
|
13218
13231
|
text_process_tasks: List[SubmitVideoAnalysisTaskRequestTextProcessTasks] = None,
|
|
13219
13232
|
video_caption_info: SubmitVideoAnalysisTaskRequestVideoCaptionInfo = None,
|
|
13220
13233
|
video_extra_info: str = None,
|
|
@@ -13236,6 +13249,7 @@ class SubmitVideoAnalysisTaskRequest(TeaModel):
|
|
|
13236
13249
|
self.model_id = model_id
|
|
13237
13250
|
self.snapshot_interval = snapshot_interval
|
|
13238
13251
|
self.split_interval = split_interval
|
|
13252
|
+
self.split_type = split_type
|
|
13239
13253
|
self.text_process_tasks = text_process_tasks
|
|
13240
13254
|
self.video_caption_info = video_caption_info
|
|
13241
13255
|
self.video_extra_info = video_extra_info
|
|
@@ -13290,6 +13304,8 @@ class SubmitVideoAnalysisTaskRequest(TeaModel):
|
|
|
13290
13304
|
result['snapshotInterval'] = self.snapshot_interval
|
|
13291
13305
|
if self.split_interval is not None:
|
|
13292
13306
|
result['splitInterval'] = self.split_interval
|
|
13307
|
+
if self.split_type is not None:
|
|
13308
|
+
result['splitType'] = self.split_type
|
|
13293
13309
|
result['textProcessTasks'] = []
|
|
13294
13310
|
if self.text_process_tasks is not None:
|
|
13295
13311
|
for k in self.text_process_tasks:
|
|
@@ -13339,6 +13355,8 @@ class SubmitVideoAnalysisTaskRequest(TeaModel):
|
|
|
13339
13355
|
self.snapshot_interval = m.get('snapshotInterval')
|
|
13340
13356
|
if m.get('splitInterval') is not None:
|
|
13341
13357
|
self.split_interval = m.get('splitInterval')
|
|
13358
|
+
if m.get('splitType') is not None:
|
|
13359
|
+
self.split_type = m.get('splitType')
|
|
13342
13360
|
self.text_process_tasks = []
|
|
13343
13361
|
if m.get('textProcessTasks') is not None:
|
|
13344
13362
|
for k in m.get('textProcessTasks'):
|
|
@@ -13380,6 +13398,7 @@ class SubmitVideoAnalysisTaskShrinkRequest(TeaModel):
|
|
|
13380
13398
|
model_id: str = None,
|
|
13381
13399
|
snapshot_interval: float = None,
|
|
13382
13400
|
split_interval: int = None,
|
|
13401
|
+
split_type: str = None,
|
|
13383
13402
|
text_process_tasks_shrink: str = None,
|
|
13384
13403
|
video_caption_info_shrink: str = None,
|
|
13385
13404
|
video_extra_info: str = None,
|
|
@@ -13401,6 +13420,7 @@ class SubmitVideoAnalysisTaskShrinkRequest(TeaModel):
|
|
|
13401
13420
|
self.model_id = model_id
|
|
13402
13421
|
self.snapshot_interval = snapshot_interval
|
|
13403
13422
|
self.split_interval = split_interval
|
|
13423
|
+
self.split_type = split_type
|
|
13404
13424
|
self.text_process_tasks_shrink = text_process_tasks_shrink
|
|
13405
13425
|
self.video_caption_info_shrink = video_caption_info_shrink
|
|
13406
13426
|
self.video_extra_info = video_extra_info
|
|
@@ -13444,6 +13464,8 @@ class SubmitVideoAnalysisTaskShrinkRequest(TeaModel):
|
|
|
13444
13464
|
result['snapshotInterval'] = self.snapshot_interval
|
|
13445
13465
|
if self.split_interval is not None:
|
|
13446
13466
|
result['splitInterval'] = self.split_interval
|
|
13467
|
+
if self.split_type is not None:
|
|
13468
|
+
result['splitType'] = self.split_type
|
|
13447
13469
|
if self.text_process_tasks_shrink is not None:
|
|
13448
13470
|
result['textProcessTasks'] = self.text_process_tasks_shrink
|
|
13449
13471
|
if self.video_caption_info_shrink is not None:
|
|
@@ -13488,6 +13510,8 @@ class SubmitVideoAnalysisTaskShrinkRequest(TeaModel):
|
|
|
13488
13510
|
self.snapshot_interval = m.get('snapshotInterval')
|
|
13489
13511
|
if m.get('splitInterval') is not None:
|
|
13490
13512
|
self.split_interval = m.get('splitInterval')
|
|
13513
|
+
if m.get('splitType') is not None:
|
|
13514
|
+
self.split_type = m.get('splitType')
|
|
13491
13515
|
if m.get('textProcessTasks') is not None:
|
|
13492
13516
|
self.text_process_tasks_shrink = m.get('textProcessTasks')
|
|
13493
13517
|
if m.get('videoCaptionInfo') is not None:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud-quanmiaolightapp20240801
|
|
3
|
-
Version: 2.12.
|
|
3
|
+
Version: 2.12.1
|
|
4
4
|
Summary: Alibaba Cloud QuanMiaoLightApp (20240801) SDK Library for Python
|
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
|
6
6
|
Author: Alibaba Cloud SDK
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_quanmiaolightapp20240801/__init__.py,sha256=rtmNKcIFEk8U_KEro50ecPj4EoxFWGsF66wtEh75DSk,22
|
|
2
|
+
alibabacloud_quanmiaolightapp20240801/client.py,sha256=EgZrtGn62hOdKAj31_GqiVPGux3gakQW7MTUx7p83jQ,202211
|
|
3
|
+
alibabacloud_quanmiaolightapp20240801/models.py,sha256=NVcIHbm7s3vI-mvrMmrqCuPEme6HREwGDQr_yHDNkKU,472657
|
|
4
|
+
alibabacloud_quanmiaolightapp20240801-2.12.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_quanmiaolightapp20240801-2.12.1.dist-info/METADATA,sha256=_4KNbt-kg9TClG23rr6lE07NE_C5aVoLj5F52ujh2F0,2404
|
|
6
|
+
alibabacloud_quanmiaolightapp20240801-2.12.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_quanmiaolightapp20240801-2.12.1.dist-info/top_level.txt,sha256=8OeD8NiIhtrm1c4lX_9fGb1YEX3tX01Q8FcLZMKbXlE,38
|
|
8
|
+
alibabacloud_quanmiaolightapp20240801-2.12.1.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_quanmiaolightapp20240801/__init__.py,sha256=AL2etpZmtSgi8PkUDhP3zjy7PZ8KCQJPWCB6f3BzgY8,22
|
|
2
|
-
alibabacloud_quanmiaolightapp20240801/client.py,sha256=BVB4m3BVRfamBL_8PIVZw4sIbso1KtonnZklBGJ7sdI,201783
|
|
3
|
-
alibabacloud_quanmiaolightapp20240801/models.py,sha256=mpTz7Zx8Cb0ISMX0sdcBtkWAa87Lv8y_K6zqj13H7EQ,471653
|
|
4
|
-
alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info/METADATA,sha256=DTDV7TzYyDiFHNv6G_S4Drpt6LL2Q6u-slickQFDwD4,2404
|
|
6
|
-
alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info/top_level.txt,sha256=8OeD8NiIhtrm1c4lX_9fGb1YEX3tX01Q8FcLZMKbXlE,38
|
|
8
|
-
alibabacloud_quanmiaolightapp20240801-2.12.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|