apiKey: ********************{
"imageUrls": [
"https://example.com/image1.jpg",
"https://example.com/image2.jpg"
],
"voiceUrl": "https://example.com/voice.mp3",
"bgmUrl": "https://example.com/bgm.mp3",
"bgmVolume": 100,
"coverImageUrl": "https://example.com/cover.jpg",
"coverImageDuration": 3,
"targetWidth": 1920,
"targetHeight": 1080
}curl --location --request POST '/api/video/generate' \
--header 'apiKey: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"imageUrls": [
"https://example.com/image1.jpg",
"https://example.com/image2.jpg"
],
"voiceUrl": "https://example.com/voice.mp3",
"bgmUrl": "https://example.com/bgm.mp3",
"bgmVolume": 100,
"coverImageUrl": "https://example.com/cover.jpg",
"coverImageDuration": 3,
"targetWidth": 1920,
"targetHeight": 1080
}'{
"errorMessage": "string",
"code": 0,
"aboutUrl": "string",
"traceId": "string",
"videoUrl": "/api/video/files/generated_video_123.mp4",
"downloadUrl": "/api/video/download/generated_video_123.mp4"
}