Video2Video
QueryStatus

QueryStatus

description

Query Video2Video task status

Usage

URL

https://www.vmagic.app/api/query_video2video_status

Header

{
    'Content-Type': 'application/json',
    'Authorization': `Bearer ${token}`
}

Params

{
    task_id: string  //The task_id returned by CreateTask.
}

Response

{
    data?: {
    status: number,  // Task status, 0: In progress 1: Success 2: Failure
    task_id: string, // task id
    res_video_tmp_url: string, // Generated video URL after task completion
    video_style: string, // Video Style
    open_face_HD: boolean, // Whether to enable Face HD processing
}
    success: boolean,
    errorMsg: string
}