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.
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.mp4job_bbbd3e0aedbb4aca
-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.
Strips the audio track and copies the video untouched, so there is no quality loss and almost no work.
-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.
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.
This exact command ran through the API against a URL.