Powered by WebAssembly
Convert Video to AAC Audio via API
AAC provides better audio quality than MP3 at the same bitrate and is the standard audio codec for streaming platforms. Extract AAC audio from any video file.
Try it in your browser
Loading FFmpeg engine... (~31 MB)
Use the API
curl -X POST https://renderio.dev/v1/commands \
-H "X-API-KEY: ffsk_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"ffmpeg_command": "-i {in_video} -vn -c:a aac -b:a 192k {out_audio}",
"input_files": {
"in_video": "https://example.com/input.mp4"
},
"output_files": {
"out_audio": "output.aac"
}
}'Need an API key? Get your free API key to start processing files programmatically.
Common Variations
High quality 256kbps
-i input.mp4 -vn -c:a aac -b:a 256k output.aacM4A container (AAC in MP4)
-i input.mp4 -vn -c:a aac -b:a 192k output.m4aLow bitrate for voice
-i input.mp4 -vn -ac 1 -c:a aac -b:a 64k output.aacRelated Operations
Need to process at scale?
Automate this with the RenderIO FFmpeg API. Process thousands of files programmatically or through no-code video automation.