Documentation Index
Fetch the complete documentation index at: https://docs.dubformer.ai/llms.txt
Use this file to discover all available pages before exploring further.
This endpoint returns detailed information about a specific video within a project.
Path Parameters
The unique identifier of the project.
The unique identifier of the video.
Response
The response is a JSON object with the following fields:
Current status of the video (e.g., ‘new’, ‘in_progress’, ‘completed’).
Type of video processing (e.g., dubbing, voiceover, audio_description, transcription, translation, subtitling).
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).
Array of key-value pairs containing video metadata, if provided.
ISO timestamp of creation.
ISO timestamp of last update.
curl -X GET \
https://studio.dubformer.ai/api/v1/projects/proj_5f83a14b2ec1b/videos/vid_7a92c36d4fe3c \
-H 'Authorization: Bearer YOUR_API_KEY'
{
"id": "vid_7a92c36d4fe3c",
"name": "Marketing Video 1",
"status": "completed",
"processingType": "dubbing",
"srcLang": "en",
"dstLangs": ["es-ES", "fr-FR"],
"videoUrl": "https://studio.dubformer.ai/api/v1/projects/proj_5f83a14b2ec1b/videos/vid_7a92c36d4fe3c",
"videoDuration": 123.45,
"remark": "Some remark",
"stringVariables": [
{ "key": "storyTitleId", "value": "12345" },
{ "key": "storyItemCode", "value": "PYR_3345" }
],
"createdAt": "2023-12-01T10:30:00.000Z",
"updatedAt": "2023-12-01T15:45:00.000Z"
}