cURL
curl --request GET \ --url https://models.rivus.cn/v1/videos/{video_id}/content \ --header 'Authorization: Bearer <token>'
"<string>"
使用 GET /v1/videos//content 下载成片(支持断点重传)。
completed
Authorization: Bearer <Token>
export BASE_URL="https://models.rivus.cn/v1" export TOKEN="oh-xxxxxxxxxxxxxxxx" export VIDEO_ID="video_xxx" # 已完成的任务 id
curl -L "$BASE_URL/videos/$VIDEO_ID/content" \ -H "Authorization: Bearer $TOKEN" \ --output out.mp4
使用 API Key 作为 Bearer Token
视频任务的唯一标识符
视频文件
The response is of type file.
file