Remove audio from a video

Strips the audio track and copies the video untouched, so there is no quality loss and almost no work.

ffmpeg -i https://cdn.rendobar.com/assets/examples/sample.mp4 -an -c:v copy out.mp4
Encode
45 ms
Output
282.5 KB
Cost
$0.0015
Result
1280x720

job_bbbd3e0aedbb4aca

The part everyone gets wrong

-an drops audio and -c:v copy avoids re-encoding the video, so this is a container rewrite rather than a transcode. Leaving out -c:v copy silently re-encodes the whole video to strip a track you were only deleting.

Frequently asked questions

How do I remove audio from video?

Strips the audio track and copies the video untouched, so there is no quality loss and almost no work.

What goes wrong most often?

-an drops audio and -c:v copy avoids re-encoding the video, so this is a container rewrite rather than a transcode. Leaving out -c:v copy silently re-encodes the whole video to strip a track you were only deleting.

Do I need FFmpeg installed?

Not with Rendobar. The command on this page ran through the API against a URL, with no local FFmpeg and no server. The job id below it is the job that produced these numbers.

Run this without installing FFmpeg

This exact command ran through the API against a URL.