---
title: 'Video s-2rPriL3Pw'
source: 'https://youtube.com/watch?v=s-2rPriL3Pw'
video_id: 's-2rPriL3Pw'
date: 2026-07-02
duration_sec: 128
---

# Video s-2rPriL3Pw

> Source: [Video s-2rPriL3Pw](https://youtube.com/watch?v=s-2rPriL3Pw)

## Summary

This video demonstrates how to remove audio from a video file using FFmpeg. It explains the command required to strip audio while preserving the video quality and size.

### Key Points

- **Goal of video** [00:00] — Removing audio from a video file using FFmpeg.
- **Check file with ffprobe** [00:26] — Use fprobe to examine tracks: video (h.264), audio (AAC), metadata.
- **FFmpeg command to remove audio** [00:52] — Command: ffmpeg -i train_whistle.mp4 -vcodec copy -an output.mp4. -an strips audio.
- **Speed and file size impact** [01:12] — Copying is fast (especially on SSD). File size reduction minimal: 261 MB to 260 MB.

### Conclusion

FFmpeg's -an flag efficiently removes audio from video files, useful for privacy or size reduction.

## Transcript

Welcome. In this video I'm going to be extracting video or removing the audio from a video file. It's two different ways of looking at the same thing. I'll put a link in the description to the commands I'm using in this video, and we'll also have a link to my FFmpeg notes where you can find the installation information,
and a link to my FFmpeg playlist. So this is a little tricky here. I have this video called Train Whistle. I'll open it up, and this has a loud train whistle on it, but you can't hear it because I have my microphone plugged in to record this video.
But I will show you that it does have the audio on it. So I'm in my terminal here. I'm on my desktop. I can type ffprobe and then I'll type train whistle, enter. And here we have the file and this has a number of tracks on it. Here's the video track,
it's h.264. And then we have AAC here and this is a metadata track, timecode handler, and some other track. So we want to extract the video file from this. So I'll type clear.
So to start I'll type ffmpeg space dash i space and then the name of the file, train whistle dot mp4 then dash v codec space copy So I just want to copy the file I don want to modify it in any way then space dash an so this will remove the audio and then space so i say train whistle no audio dot mp4
i'll hit enter so this is a 4k file and it did that immediately the reason is is it mostly just copies things and this can copy very fast i have an ssd in here so i'll clear my screen here we'll at these two files. So one of them is 261 meg and one is 260 meg. So the audio didn't take up a lot
of space in here. I'll type ffprobe, look at it, and here we have the video file but the audio is no longer in this. I can open it up here and here's the video file and we don't have the volume slider
on it anymore. So this could be useful if you have a video and you need to remove the audio for privacy reasons or you just don't like the audio you maybe want to make the file smaller and you
don't need the audio there could be a number of reasons you might want to do this so that's all for this video if you have any questions about this please leave it in the comments if you like this video please click like if you haven't subscribed to my channel i'd appreciate if you could do that and thanks for watching until next time goodbye
