Extract audio from video.
POST/operator/extract-audio
Extract audio from video.
Request
Header Parameters
ipaas string
- application/json
Bodyrequired
videostringrequired
The URL of the video file.
Example:
https://example.com/video.mp4
formatstring
The desired audio file format. Default is mp3
.
Possible values: [flac
, m4a
, mp3
, ogg
, wav
]
fileNamestring
The name of the extracted audio file.
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (auto)
Schema
outputUrlstringrequired
The URL of the extracted audio file.
Example:
https://example.com/audio.mp3
{
"outputUrl": "https://example.com/audio.mp3"
}
Bad Request
- application/json
- Schema
- Example (auto)
Schema
statusnumber
errorMessagestring
{
"status": 0,
"errorMessage": "string"
}