Skip to main content
POST
/
producer
/
download-video
下载视频
curl --request POST \
  --url https://api.mountsea.ai/producer/download-video \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "audioId": "9719e086-576a-4830-a0f2-7c9424460d6d",
  "preset": "modern"
}
'
{
  "taskId": "<string>"
}
Convert an audio track into a video with visual effects. Choose from preset visualization styles.
This is an async task. The response contains a taskId — use Get Task Status to poll for the video download URL.

Available Presets

PresetDescription
modernModern style with dynamic visualizations (default)
playerMusic player style interface
simpleClean, minimal design
Video generation takes longer than audio downloads — expect 2-5 minutes depending on track length. Output is 1080p MP4.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
audioId
string
required

音频 ID

Example:

"9719e086-576a-4830-a0f2-7c9424460d6d"

preset
enum<string>
default:modern

视频预设样式

Available options:
modern,
player,
simple
Example:

"modern"

Response

任务创建成功

taskId
string
required

任务 ID,用于后续查询结果