@alicloud/quanmiaolightapp20240801 2.9.1 → 2.9.2
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.
- package/dist/client.js +6 -0
- package/dist/client.js.map +1 -1
- package/dist/models/GetVideoAnalysisTaskResponseBody.d.ts +47 -0
- package/dist/models/GetVideoAnalysisTaskResponseBody.js +83 -1
- package/dist/models/GetVideoAnalysisTaskResponseBody.js.map +1 -1
- package/dist/models/RunVideoAnalysisRequest.d.ts +17 -0
- package/dist/models/RunVideoAnalysisRequest.js +31 -1
- package/dist/models/RunVideoAnalysisRequest.js.map +1 -1
- package/dist/models/RunVideoAnalysisResponseBody.d.ts +47 -0
- package/dist/models/RunVideoAnalysisResponseBody.js +83 -1
- package/dist/models/RunVideoAnalysisResponseBody.js.map +1 -1
- package/dist/models/RunVideoAnalysisShrinkRequest.d.ts +1 -0
- package/dist/models/RunVideoAnalysisShrinkRequest.js +2 -0
- package/dist/models/RunVideoAnalysisShrinkRequest.js.map +1 -1
- package/dist/models/SubmitVideoAnalysisTaskRequest.d.ts +17 -0
- package/dist/models/SubmitVideoAnalysisTaskRequest.js +31 -1
- package/dist/models/SubmitVideoAnalysisTaskRequest.js.map +1 -1
- package/dist/models/SubmitVideoAnalysisTaskShrinkRequest.d.ts +1 -0
- package/dist/models/SubmitVideoAnalysisTaskShrinkRequest.js +2 -0
- package/dist/models/SubmitVideoAnalysisTaskShrinkRequest.js.map +1 -1
- package/dist/models/model.d.ts +8 -0
- package/dist/models/model.js +47 -31
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +8 -0
- package/src/models/GetVideoAnalysisTaskResponseBody.ts +102 -0
- package/src/models/RunVideoAnalysisRequest.ts +38 -0
- package/src/models/RunVideoAnalysisResponseBody.ts +102 -0
- package/src/models/RunVideoAnalysisShrinkRequest.ts +3 -0
- package/src/models/SubmitVideoAnalysisTaskRequest.ts +38 -0
- package/src/models/SubmitVideoAnalysisTaskShrinkRequest.ts +3 -0
- package/src/models/model.ts +8 -0
|
@@ -626,6 +626,102 @@ export class RunVideoAnalysisResponseBodyPayloadOutputVideoMindMappingGenerateRe
|
|
|
626
626
|
}
|
|
627
627
|
}
|
|
628
628
|
|
|
629
|
+
export class RunVideoAnalysisResponseBodyPayloadOutputVideoRoleRecognitionResultVideoRolesTimeIntervals extends $dara.Model {
|
|
630
|
+
endTime?: number;
|
|
631
|
+
startTime?: number;
|
|
632
|
+
timestamp?: number;
|
|
633
|
+
url?: string;
|
|
634
|
+
static names(): { [key: string]: string } {
|
|
635
|
+
return {
|
|
636
|
+
endTime: 'endTime',
|
|
637
|
+
startTime: 'startTime',
|
|
638
|
+
timestamp: 'timestamp',
|
|
639
|
+
url: 'url',
|
|
640
|
+
};
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
static types(): { [key: string]: any } {
|
|
644
|
+
return {
|
|
645
|
+
endTime: 'number',
|
|
646
|
+
startTime: 'number',
|
|
647
|
+
timestamp: 'number',
|
|
648
|
+
url: 'string',
|
|
649
|
+
};
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
validate() {
|
|
653
|
+
super.validate();
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
constructor(map?: { [key: string]: any }) {
|
|
657
|
+
super(map);
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
export class RunVideoAnalysisResponseBodyPayloadOutputVideoRoleRecognitionResultVideoRoles extends $dara.Model {
|
|
662
|
+
isAutoRecognition?: boolean;
|
|
663
|
+
ratio?: number;
|
|
664
|
+
roleInfo?: string;
|
|
665
|
+
roleName?: string;
|
|
666
|
+
timeIntervals?: RunVideoAnalysisResponseBodyPayloadOutputVideoRoleRecognitionResultVideoRolesTimeIntervals[];
|
|
667
|
+
static names(): { [key: string]: string } {
|
|
668
|
+
return {
|
|
669
|
+
isAutoRecognition: 'isAutoRecognition',
|
|
670
|
+
ratio: 'ratio',
|
|
671
|
+
roleInfo: 'roleInfo',
|
|
672
|
+
roleName: 'roleName',
|
|
673
|
+
timeIntervals: 'timeIntervals',
|
|
674
|
+
};
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
static types(): { [key: string]: any } {
|
|
678
|
+
return {
|
|
679
|
+
isAutoRecognition: 'boolean',
|
|
680
|
+
ratio: 'number',
|
|
681
|
+
roleInfo: 'string',
|
|
682
|
+
roleName: 'string',
|
|
683
|
+
timeIntervals: { 'type': 'array', 'itemType': RunVideoAnalysisResponseBodyPayloadOutputVideoRoleRecognitionResultVideoRolesTimeIntervals },
|
|
684
|
+
};
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
validate() {
|
|
688
|
+
if(Array.isArray(this.timeIntervals)) {
|
|
689
|
+
$dara.Model.validateArray(this.timeIntervals);
|
|
690
|
+
}
|
|
691
|
+
super.validate();
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
constructor(map?: { [key: string]: any }) {
|
|
695
|
+
super(map);
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
export class RunVideoAnalysisResponseBodyPayloadOutputVideoRoleRecognitionResult extends $dara.Model {
|
|
700
|
+
videoRoles?: RunVideoAnalysisResponseBodyPayloadOutputVideoRoleRecognitionResultVideoRoles[];
|
|
701
|
+
static names(): { [key: string]: string } {
|
|
702
|
+
return {
|
|
703
|
+
videoRoles: 'videoRoles',
|
|
704
|
+
};
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
static types(): { [key: string]: any } {
|
|
708
|
+
return {
|
|
709
|
+
videoRoles: { 'type': 'array', 'itemType': RunVideoAnalysisResponseBodyPayloadOutputVideoRoleRecognitionResultVideoRoles },
|
|
710
|
+
};
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
validate() {
|
|
714
|
+
if(Array.isArray(this.videoRoles)) {
|
|
715
|
+
$dara.Model.validateArray(this.videoRoles);
|
|
716
|
+
}
|
|
717
|
+
super.validate();
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
constructor(map?: { [key: string]: any }) {
|
|
721
|
+
super(map);
|
|
722
|
+
}
|
|
723
|
+
}
|
|
724
|
+
|
|
629
725
|
export class RunVideoAnalysisResponseBodyPayloadOutputVideoShotSnapshotResultVideoShotsVideoSnapshots extends $dara.Model {
|
|
630
726
|
url?: string;
|
|
631
727
|
static names(): { [key: string]: string } {
|
|
@@ -811,6 +907,7 @@ export class RunVideoAnalysisResponseBodyPayloadOutput extends $dara.Model {
|
|
|
811
907
|
videoGenerateResult?: RunVideoAnalysisResponseBodyPayloadOutputVideoGenerateResult;
|
|
812
908
|
videoGenerateResults?: RunVideoAnalysisResponseBodyPayloadOutputVideoGenerateResults[];
|
|
813
909
|
videoMindMappingGenerateResult?: RunVideoAnalysisResponseBodyPayloadOutputVideoMindMappingGenerateResult;
|
|
910
|
+
videoRoleRecognitionResult?: RunVideoAnalysisResponseBodyPayloadOutputVideoRoleRecognitionResult;
|
|
814
911
|
videoShotSnapshotResult?: RunVideoAnalysisResponseBodyPayloadOutputVideoShotSnapshotResult;
|
|
815
912
|
videoTitleGenerateResult?: RunVideoAnalysisResponseBodyPayloadOutputVideoTitleGenerateResult;
|
|
816
913
|
static names(): { [key: string]: string } {
|
|
@@ -821,6 +918,7 @@ export class RunVideoAnalysisResponseBodyPayloadOutput extends $dara.Model {
|
|
|
821
918
|
videoGenerateResult: 'videoGenerateResult',
|
|
822
919
|
videoGenerateResults: 'videoGenerateResults',
|
|
823
920
|
videoMindMappingGenerateResult: 'videoMindMappingGenerateResult',
|
|
921
|
+
videoRoleRecognitionResult: 'videoRoleRecognitionResult',
|
|
824
922
|
videoShotSnapshotResult: 'videoShotSnapshotResult',
|
|
825
923
|
videoTitleGenerateResult: 'videoTitleGenerateResult',
|
|
826
924
|
};
|
|
@@ -834,6 +932,7 @@ export class RunVideoAnalysisResponseBodyPayloadOutput extends $dara.Model {
|
|
|
834
932
|
videoGenerateResult: RunVideoAnalysisResponseBodyPayloadOutputVideoGenerateResult,
|
|
835
933
|
videoGenerateResults: { 'type': 'array', 'itemType': RunVideoAnalysisResponseBodyPayloadOutputVideoGenerateResults },
|
|
836
934
|
videoMindMappingGenerateResult: RunVideoAnalysisResponseBodyPayloadOutputVideoMindMappingGenerateResult,
|
|
935
|
+
videoRoleRecognitionResult: RunVideoAnalysisResponseBodyPayloadOutputVideoRoleRecognitionResult,
|
|
837
936
|
videoShotSnapshotResult: RunVideoAnalysisResponseBodyPayloadOutputVideoShotSnapshotResult,
|
|
838
937
|
videoTitleGenerateResult: RunVideoAnalysisResponseBodyPayloadOutputVideoTitleGenerateResult,
|
|
839
938
|
};
|
|
@@ -855,6 +954,9 @@ export class RunVideoAnalysisResponseBodyPayloadOutput extends $dara.Model {
|
|
|
855
954
|
if(this.videoMindMappingGenerateResult && typeof (this.videoMindMappingGenerateResult as any).validate === 'function') {
|
|
856
955
|
(this.videoMindMappingGenerateResult as any).validate();
|
|
857
956
|
}
|
|
957
|
+
if(this.videoRoleRecognitionResult && typeof (this.videoRoleRecognitionResult as any).validate === 'function') {
|
|
958
|
+
(this.videoRoleRecognitionResult as any).validate();
|
|
959
|
+
}
|
|
858
960
|
if(this.videoShotSnapshotResult && typeof (this.videoShotSnapshotResult as any).validate === 'function') {
|
|
859
961
|
(this.videoShotSnapshotResult as any).validate();
|
|
860
962
|
}
|
|
@@ -3,6 +3,7 @@ import * as $dara from '@darabonba/typescript';
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
export class RunVideoAnalysisShrinkRequest extends $dara.Model {
|
|
6
|
+
autoRoleRecognitionVideoUrl?: string;
|
|
6
7
|
excludeGenerateOptionsShrink?: string;
|
|
7
8
|
faceIdentitySimilarityMinScore?: number;
|
|
8
9
|
frameSampleMethodShrink?: string;
|
|
@@ -57,6 +58,7 @@ export class RunVideoAnalysisShrinkRequest extends $dara.Model {
|
|
|
57
58
|
videoUrl?: string;
|
|
58
59
|
static names(): { [key: string]: string } {
|
|
59
60
|
return {
|
|
61
|
+
autoRoleRecognitionVideoUrl: 'autoRoleRecognitionVideoUrl',
|
|
60
62
|
excludeGenerateOptionsShrink: 'excludeGenerateOptions',
|
|
61
63
|
faceIdentitySimilarityMinScore: 'faceIdentitySimilarityMinScore',
|
|
62
64
|
frameSampleMethodShrink: 'frameSampleMethod',
|
|
@@ -82,6 +84,7 @@ export class RunVideoAnalysisShrinkRequest extends $dara.Model {
|
|
|
82
84
|
|
|
83
85
|
static types(): { [key: string]: any } {
|
|
84
86
|
return {
|
|
87
|
+
autoRoleRecognitionVideoUrl: 'string',
|
|
85
88
|
excludeGenerateOptionsShrink: 'string',
|
|
86
89
|
faceIdentitySimilarityMinScore: 'number',
|
|
87
90
|
frameSampleMethodShrink: 'string',
|
|
@@ -153,27 +153,62 @@ export class SubmitVideoAnalysisTaskRequestVideoCaptionInfo extends $dara.Model
|
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
155
|
|
|
156
|
+
export class SubmitVideoAnalysisTaskRequestVideoRolesTimeIntervals extends $dara.Model {
|
|
157
|
+
endTime?: number;
|
|
158
|
+
startTime?: number;
|
|
159
|
+
static names(): { [key: string]: string } {
|
|
160
|
+
return {
|
|
161
|
+
endTime: 'endTime',
|
|
162
|
+
startTime: 'startTime',
|
|
163
|
+
};
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
static types(): { [key: string]: any } {
|
|
167
|
+
return {
|
|
168
|
+
endTime: 'number',
|
|
169
|
+
startTime: 'number',
|
|
170
|
+
};
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
validate() {
|
|
174
|
+
super.validate();
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
constructor(map?: { [key: string]: any }) {
|
|
178
|
+
super(map);
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
156
182
|
export class SubmitVideoAnalysisTaskRequestVideoRoles extends $dara.Model {
|
|
183
|
+
isAutoRecognition?: boolean;
|
|
157
184
|
roleInfo?: string;
|
|
158
185
|
roleName?: string;
|
|
186
|
+
timeIntervals?: SubmitVideoAnalysisTaskRequestVideoRolesTimeIntervals[];
|
|
159
187
|
urls?: string[];
|
|
160
188
|
static names(): { [key: string]: string } {
|
|
161
189
|
return {
|
|
190
|
+
isAutoRecognition: 'isAutoRecognition',
|
|
162
191
|
roleInfo: 'roleInfo',
|
|
163
192
|
roleName: 'roleName',
|
|
193
|
+
timeIntervals: 'timeIntervals',
|
|
164
194
|
urls: 'urls',
|
|
165
195
|
};
|
|
166
196
|
}
|
|
167
197
|
|
|
168
198
|
static types(): { [key: string]: any } {
|
|
169
199
|
return {
|
|
200
|
+
isAutoRecognition: 'boolean',
|
|
170
201
|
roleInfo: 'string',
|
|
171
202
|
roleName: 'string',
|
|
203
|
+
timeIntervals: { 'type': 'array', 'itemType': SubmitVideoAnalysisTaskRequestVideoRolesTimeIntervals },
|
|
172
204
|
urls: { 'type': 'array', 'itemType': 'string' },
|
|
173
205
|
};
|
|
174
206
|
}
|
|
175
207
|
|
|
176
208
|
validate() {
|
|
209
|
+
if(Array.isArray(this.timeIntervals)) {
|
|
210
|
+
$dara.Model.validateArray(this.timeIntervals);
|
|
211
|
+
}
|
|
177
212
|
if(Array.isArray(this.urls)) {
|
|
178
213
|
$dara.Model.validateArray(this.urls);
|
|
179
214
|
}
|
|
@@ -186,6 +221,7 @@ export class SubmitVideoAnalysisTaskRequestVideoRoles extends $dara.Model {
|
|
|
186
221
|
}
|
|
187
222
|
|
|
188
223
|
export class SubmitVideoAnalysisTaskRequest extends $dara.Model {
|
|
224
|
+
autoRoleRecognitionVideoUrl?: string;
|
|
189
225
|
/**
|
|
190
226
|
* @example
|
|
191
227
|
* 1
|
|
@@ -242,6 +278,7 @@ export class SubmitVideoAnalysisTaskRequest extends $dara.Model {
|
|
|
242
278
|
videoUrl?: string;
|
|
243
279
|
static names(): { [key: string]: string } {
|
|
244
280
|
return {
|
|
281
|
+
autoRoleRecognitionVideoUrl: 'autoRoleRecognitionVideoUrl',
|
|
245
282
|
deduplicationId: 'deduplicationId',
|
|
246
283
|
excludeGenerateOptions: 'excludeGenerateOptions',
|
|
247
284
|
faceIdentitySimilarityMinScore: 'faceIdentitySimilarityMinScore',
|
|
@@ -266,6 +303,7 @@ export class SubmitVideoAnalysisTaskRequest extends $dara.Model {
|
|
|
266
303
|
|
|
267
304
|
static types(): { [key: string]: any } {
|
|
268
305
|
return {
|
|
306
|
+
autoRoleRecognitionVideoUrl: 'string',
|
|
269
307
|
deduplicationId: 'string',
|
|
270
308
|
excludeGenerateOptions: { 'type': 'array', 'itemType': 'string' },
|
|
271
309
|
faceIdentitySimilarityMinScore: 'number',
|
|
@@ -3,6 +3,7 @@ import * as $dara from '@darabonba/typescript';
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
export class SubmitVideoAnalysisTaskShrinkRequest extends $dara.Model {
|
|
6
|
+
autoRoleRecognitionVideoUrl?: string;
|
|
6
7
|
/**
|
|
7
8
|
* @example
|
|
8
9
|
* 1
|
|
@@ -59,6 +60,7 @@ export class SubmitVideoAnalysisTaskShrinkRequest extends $dara.Model {
|
|
|
59
60
|
videoUrl?: string;
|
|
60
61
|
static names(): { [key: string]: string } {
|
|
61
62
|
return {
|
|
63
|
+
autoRoleRecognitionVideoUrl: 'autoRoleRecognitionVideoUrl',
|
|
62
64
|
deduplicationId: 'deduplicationId',
|
|
63
65
|
excludeGenerateOptionsShrink: 'excludeGenerateOptions',
|
|
64
66
|
faceIdentitySimilarityMinScore: 'faceIdentitySimilarityMinScore',
|
|
@@ -83,6 +85,7 @@ export class SubmitVideoAnalysisTaskShrinkRequest extends $dara.Model {
|
|
|
83
85
|
|
|
84
86
|
static types(): { [key: string]: any } {
|
|
85
87
|
return {
|
|
88
|
+
autoRoleRecognitionVideoUrl: 'string',
|
|
86
89
|
deduplicationId: 'string',
|
|
87
90
|
excludeGenerateOptionsShrink: 'string',
|
|
88
91
|
faceIdentitySimilarityMinScore: 'number',
|
package/src/models/model.ts
CHANGED
|
@@ -35,6 +35,9 @@ export { GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoMindMappingGenera
|
|
|
35
35
|
export { GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoMindMappingGenerateResultVideoMindMappingsChildNodes } from './GetVideoAnalysisTaskResponseBody';
|
|
36
36
|
export { GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoMindMappingGenerateResultVideoMindMappings } from './GetVideoAnalysisTaskResponseBody';
|
|
37
37
|
export { GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoMindMappingGenerateResult } from './GetVideoAnalysisTaskResponseBody';
|
|
38
|
+
export { GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoRoleRecognitionResultVideoRolesTimeIntervals } from './GetVideoAnalysisTaskResponseBody';
|
|
39
|
+
export { GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoRoleRecognitionResultVideoRoles } from './GetVideoAnalysisTaskResponseBody';
|
|
40
|
+
export { GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoRoleRecognitionResult } from './GetVideoAnalysisTaskResponseBody';
|
|
38
41
|
export { GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoTitleGenerateResultUsage } from './GetVideoAnalysisTaskResponseBody';
|
|
39
42
|
export { GetVideoAnalysisTaskResponseBodyDataPayloadOutputVideoTitleGenerateResult } from './GetVideoAnalysisTaskResponseBody';
|
|
40
43
|
export { GetVideoAnalysisTaskResponseBodyDataPayloadOutput } from './GetVideoAnalysisTaskResponseBody';
|
|
@@ -126,6 +129,7 @@ export { RunVideoAnalysisRequestFrameSampleMethod } from './RunVideoAnalysisRequ
|
|
|
126
129
|
export { RunVideoAnalysisRequestTextProcessTasks } from './RunVideoAnalysisRequest';
|
|
127
130
|
export { RunVideoAnalysisRequestVideoCaptionInfoVideoCaptions } from './RunVideoAnalysisRequest';
|
|
128
131
|
export { RunVideoAnalysisRequestVideoCaptionInfo } from './RunVideoAnalysisRequest';
|
|
132
|
+
export { RunVideoAnalysisRequestVideoRolesTimeIntervals } from './RunVideoAnalysisRequest';
|
|
129
133
|
export { RunVideoAnalysisRequestVideoRoles } from './RunVideoAnalysisRequest';
|
|
130
134
|
export { RunVideoAnalysisResponseBodyHeader } from './RunVideoAnalysisResponseBody';
|
|
131
135
|
export { RunVideoAnalysisResponseBodyPayloadOutputVideoAnalysisResultUsage } from './RunVideoAnalysisResponseBody';
|
|
@@ -142,6 +146,9 @@ export { RunVideoAnalysisResponseBodyPayloadOutputVideoMindMappingGenerateResult
|
|
|
142
146
|
export { RunVideoAnalysisResponseBodyPayloadOutputVideoMindMappingGenerateResultVideoMindMappingsChildNodes } from './RunVideoAnalysisResponseBody';
|
|
143
147
|
export { RunVideoAnalysisResponseBodyPayloadOutputVideoMindMappingGenerateResultVideoMindMappings } from './RunVideoAnalysisResponseBody';
|
|
144
148
|
export { RunVideoAnalysisResponseBodyPayloadOutputVideoMindMappingGenerateResult } from './RunVideoAnalysisResponseBody';
|
|
149
|
+
export { RunVideoAnalysisResponseBodyPayloadOutputVideoRoleRecognitionResultVideoRolesTimeIntervals } from './RunVideoAnalysisResponseBody';
|
|
150
|
+
export { RunVideoAnalysisResponseBodyPayloadOutputVideoRoleRecognitionResultVideoRoles } from './RunVideoAnalysisResponseBody';
|
|
151
|
+
export { RunVideoAnalysisResponseBodyPayloadOutputVideoRoleRecognitionResult } from './RunVideoAnalysisResponseBody';
|
|
145
152
|
export { RunVideoAnalysisResponseBodyPayloadOutputVideoShotSnapshotResultVideoShotsVideoSnapshots } from './RunVideoAnalysisResponseBody';
|
|
146
153
|
export { RunVideoAnalysisResponseBodyPayloadOutputVideoShotSnapshotResultVideoShots } from './RunVideoAnalysisResponseBody';
|
|
147
154
|
export { RunVideoAnalysisResponseBodyPayloadOutputVideoShotSnapshotResult } from './RunVideoAnalysisResponseBody';
|
|
@@ -162,6 +169,7 @@ export { SubmitVideoAnalysisTaskRequestFrameSampleMethod } from './SubmitVideoAn
|
|
|
162
169
|
export { SubmitVideoAnalysisTaskRequestTextProcessTasks } from './SubmitVideoAnalysisTaskRequest';
|
|
163
170
|
export { SubmitVideoAnalysisTaskRequestVideoCaptionInfoVideoCaptions } from './SubmitVideoAnalysisTaskRequest';
|
|
164
171
|
export { SubmitVideoAnalysisTaskRequestVideoCaptionInfo } from './SubmitVideoAnalysisTaskRequest';
|
|
172
|
+
export { SubmitVideoAnalysisTaskRequestVideoRolesTimeIntervals } from './SubmitVideoAnalysisTaskRequest';
|
|
165
173
|
export { SubmitVideoAnalysisTaskRequestVideoRoles } from './SubmitVideoAnalysisTaskRequest';
|
|
166
174
|
export { SubmitVideoAnalysisTaskResponseBodyData } from './SubmitVideoAnalysisTaskResponseBody';
|
|
167
175
|
export { UpdateVideoAnalysisTaskResponseBodyData } from './UpdateVideoAnalysisTaskResponseBody';
|