This endpoint returns a list of all videos that were added to the specified project.
Path Parameters
The unique identifier of the project.
Response
The response is a JSON array of video objects. Each object has the following fields:
Current status of the video (e.g., ‘new’, ‘in_progress’, ‘completed’).
Type of video processing (e.g., ‘dubbing’, ‘voiceover’, ‘audio_description’).
Array of target language codes.
URL to the video resource.
Duration of the video in seconds (if available).
Additional remarks about the video (if any).
ISO timestamp of creation.
ISO timestamp of last update.
curl -X GET \
https://studio.dubformer.ai/api/v1/projects/5f83a14b2ec1b8a1234567890/videos \
-H 'Authorization: Bearer YOUR_API_KEY'
[
{
"id": "7a92c36d4fe3c8b1234567891",
"name": "marketing_video_1.mp4",
"status": "completed",
"processingType": "dubbing",
"srcLang": "en",
"dstLangs": ["es-ES", "fr-FR"],
"videoUrl": "https://studio.dubformer.ai/api/v1/projects/5f83a14b2ec1b8a1234567890/videos/7a92c36d4fe3c8b1234567891",
"videoDuration": 123.45,
"remark": "Some remark",
"createdAt": "2023-12-01T10:30:00.000Z",
"updatedAt": "2023-12-01T15:45:00.000Z"
},
{
"id": "8b03d47e5gf4d9c1234567892",
"name": "training_video_2.mp4",
"status": "in_progress",
"processingType": "voiceover",
"srcLang": "en",
"dstLangs": ["es-ES"],
"videoUrl": "https://studio.dubformer.ai/api/v1/projects/5f83a14b2ec1b8a1234567890/videos/8b03d47e5gf4d9c1234567892",
"videoDuration": 98.7,
"remark": null,
"createdAt": "2023-12-01T11:00:00.000Z",
"updatedAt": "2023-12-01T14:20:00.000Z"
}
]