How to Blur a Video: Censor Faces, Plates and Logos (2026 Guide)
A video goes up on Monday. By Wednesday somebody in the comments has read the plate on the parked van and named the street corner. That is usually the moment people start searching for how to blur a video.
The job is smaller than it looks. FFmpeg blurs a rectangle in one pass without opening an editor, and YouTube Studio has a blur tool built in that most channel owners never touch. Neither route needs a subscription.
What does take thought is picking a blur strength that actually hides the detail, and knowing the two things a blur will never fix. That is what the rest of this page is about.
How to Blur a Video: The Short Answer
There are two routes and you only need one of them. If the file is on your machine, one FFmpeg command blurs a fixed rectangle and leaves the rest of the frame alone. Change four numbers in the line below and run it:
ffmpeg -i input.mp4 -filter_complex "[0:v]crop=260:200:120:100,gblur=sigma=18[b];[0:v][b]overlay=120:100" -c:a copy output.mp4
The numbers are width, height, x position and y position. They appear twice, once inside crop and once in overlay, and they have to match in both places.
If the clip is already on YouTube and the channel is yours, skip the command line. Studio’s Blur tool edits the video you already uploaded, and it can track a face or an object as it moves.
What you need before you start
Three things, and the first one is easy to skip.
The original file at the resolution it was recorded or exported in. Working from a re-downloaded copy of your own upload throws detail away before you begin, and the loss shows up later as a soft, over-compressed result.
An FFmpeg build for the command-line route. Check it in a terminal with ffmpeg -version and confirm you get a version line back instead of “command not found”. Any build from the last few years carries the filters used here.
Then the pixel coordinates of the area you want to hide. Pause on the frame where the plate or the face is clearest and save a still from it. Open that still in any image editor that reports the cursor position, and write down the top-left corner plus the width and height of the box.
Coordinates belong to the frame size. If you scale the output later, either apply the blur before the scale or multiply the numbers by the same factor.
For the Studio route you need a computer. The blur tools are not in the YouTube mobile app, and the video should have finished processing before the Editor will save anything.
Method 1: a region blur in FFmpeg
Step 1: place the box
Start from the command above and swap in your four numbers. A face in a 1080p clip usually needs a box around 200 pixels wide, while a number plate might be 160 by 60. Run it, then inspect a single frame rather than watching the whole file:
ffmpeg -ss 3 -i output.mp4 -frames:v 1 check.png
If the box sits a few pixels off, shift x and y by that amount and run it again. Two or three passes is normal, and it is far quicker than exporting a full preview each time.
Step 2: choose the effect, not just a blur
| What you want | Filter | What it costs you |
|---|---|---|
| Soft blur that looks natural | gblur=sigma=18 | Slower than the alternatives |
| Fast blur on a modest region | boxblur=luma_radius=12:luma_power=2 | A low radius leaves readable shapes behind |
| Mosaic blocks | pixelize=w=24:h=24 | Unmistakable, so it looks deliberate |
| A solid opaque block | drawbox=x=120:y=100:w=260:h=200:color=black@1.0:t=fill | Hides everything, including any doubt |
All four were run against FFmpeg 7.1 while writing this, with the audio kept intact. For a face, gblur with sigma between 15 and 25 is a sane starting point. Paperwork is easier to hide than a face, so push the strength higher: nobody minds if a document is unreadable.
The boxblur option works differently, because its radius is a window rather than a strength. A radius of 6 averages every pixel over a 13-pixel square, so small numbers do very little at 1080p or above. Every option for each of these filters is listed in the official filter documentation.
Step 3: limit the blur to the seconds that matter
Blurring a whole clip when the plate is visible for two seconds looks careless and slows the export down. Every FFmpeg filter accepts an enable expression, so the blur can switch on and off at fixed times:
-vf "boxblur=luma_radius=12:luma_power=2:enable='between(t,2,4)'"
The times are seconds from the start of the file. In testing on FFmpeg 7.1 the blur appeared at 2 seconds and lifted at 4, exactly as the expression says, with no audio drift.
Step 4: keep the audio untouched
Add -c:a copy so the sound is passed through rather than decoded and re-encoded. Without it FFmpeg re-encodes the audio too, which is harmless but slower. Leave it out and you may also lose the sound by accident if your command uses -map 0:v, because that writes the video stream only.
The picture, unlike the sound, has to be re-encoded: a filter cannot be applied to a stream without decoding it first. That means one generation of compression across the whole frame, not only the blurred part. Export at a CRF near your source quality, around 18 to 21 for most footage, and the difference is hard to see.
Method 2: the blur tool inside YouTube Studio
If the video is already on YouTube and on your own channel, Studio is faster than any command line, and it handles the one thing FFmpeg makes awkward: a subject that moves.
Open YouTube Studio in a browser on a computer and go to Content. Click the title or thumbnail of the video, then pick Editor from the left menu. Under “Video editor” choose Blur, and you get two modes.
Face blur detects faces in the clip and lets you pick the ones to hide. Custom blur lets you draw the box yourself.
Either mode gives you the same controls. Drag the box, resize it from the corners, and switch between a rectangle and an oval. The timeline under the box is the part worth knowing about: drag its ends and the blur only applies inside that window. Then choose Track object if the subject moves, or Fix blur position if the camera is static.
Three details from YouTube’s own blur guide are worth reading before you press Save. The editor is desktop only, so this is not a phone job. A video with more than 100,000 views that has never been edited may also refuse to save most changes, with face blur as the exception.
Channels in the YouTube Partner Program are exempt from that view limit, but nobody gets the undo back. Since June 2025 there is no longer a “Revert to original” option, so a blur saved in the wrong place is a genuine problem.
That last point is the reason to keep a clean copy of the file elsewhere before you start. Studio edits the published video itself, and the original upload is no longer a reliable fallback. If you need the blurred version as a file rather than as a YouTube video, you can download the edited result and upload it wherever it is going.
What these tools do well, and where they stop
Both routes burn the blur into the picture. Once that export exists, the pixels underneath are gone, which is the point. The reverse is the risk: a weak blur does not hide much. A three or four pixel radius on a 1080p face leaves a silhouette anyone would recognise.
Pixelation is often treated as the strongest option. It is not, at least not by default. Small mosaic blocks can be partly reconstructed by modern machine-learning tools, so a heavy blur is the safer choice when the detail genuinely matters.
Tracking is the other honest limit of the command line. The recipe above blurs a fixed rectangle, so a subject who walks across the frame walks straight out of it. Where the detail moves, an editor with object tracking or Studio’s Track object option does in a minute what would take an afternoon of hand-keyed coordinates.
One option gets forgotten: if the sensitive detail sits at the edge of the frame, cropping the frame removes the pixels instead of obscuring them, and it costs nothing extra. If you only need part of the clip, you can also trim the clip first so there is less footage to export.
Two things blur will never fix. It does not touch the audio, so a name or a phone number spoken out loud survives a perfect visual redaction.
It also does not clean the file itself. A clip can have every face hidden and still carry GPS coordinates and a device serial inside the container. If location is the worry rather than faces, you need to strip the metadata as a separate step.
The command-line route has more variations than this page can cover, including many that mix several filters in a single pass. A broader FFmpeg command list is a better place to look if you want to combine the blur with a scale, a crop or a speed change.
Blurring footage that is not yours: rights and responsible use
A blur is an edit, not a licence. Footage belongs to the person who recorded it, and putting a blur over somebody else’s clip before reposting it changes the picture without changing who owns the work. Editing or saving a file transfers no rights to it, and no amount of redaction turns a borrowed clip into your own.
Blurring also does not create permission to publish. Hiding a face can make a clip kinder and safer to share, and in a growing number of jurisdictions footage showing an identifiable person counts as personal data with its own rules, but that sits alongside copyright rather than replacing it. Both still apply to the same file.
Where blur earns its place is on material you already have the right to publish: your own recordings, footage you have permission to use, and clips where the only real question is a bystander’s privacy. Keep the untouched original for yourself, publish the redacted version, and treat the blur as a courtesy to the people in frame rather than a way around somebody else’s terms.
If you publish on YouTube, the terms you agreed to govern what happens to the upload afterwards. Read the YouTube Terms of Service before you rely on any edit as a fix. Those rules change, and an edit is never a substitute for permission.
Troubleshooting
The blur box drifts off the subject
A fixed rectangle only works while the subject stays inside it. If the box is correct at the start and the face has slid out by the end, the clip needs tracking, which means Studio’s Track object or a manual keyframe pass in an editor. A cheap workaround is to cut the clip into shorter segments and rerun the same command with fresh coordinates for each one.
The blur is too weak to hide the detail
Under-blurring is the most common mistake, and it always looks fine on a phone screen. Check the exported frame at full size on a monitor before you publish. If a silhouette or the shape of a letter is still visible, raise sigma or the radius and export again. There is no penalty for a stronger blur.
The blur is invisible on the live YouTube video
Studio applies the edit and then reprocesses the file, so the published page can show the old version for a while. Wait for processing to finish, then reload with a hard refresh or in a private window, because the page you already loaded is cached. If the detail is still visible after processing completes, the save did not take.
Studio will not save the blur
Four causes cover most cases. The video has more than 100,000 views and has never been edited, the channel is not in the YouTube Partner Program, processing has not finished, or you are trying to do it from the mobile app. Face blur is the one change that still saves on a heavily viewed unedited video.
The audio disappeared after the blur
Your command is probably mapping the video stream only. Adding -map 0:v writes the picture and nothing else, so drop that flag or add -map 0:a alongside it. Passing -c:a copy keeps the original audio codec as well, so the sound is neither re-encoded nor lost.
The export came back much larger than the source
The blur is rarely the reason. Re-encoding is: the CRF or the preset in your command probably does not match the settings your source was made with.
A region blur is cheap. In a 10-second test clip it changed the file size by about one percent at the same quality setting, while blurring the whole frame made the file much smaller because there was less detail left to store.
Frequently asked questions
How to blur a video on an iPhone or Android?
Not with the built-in apps, because neither Photos nor the stock camera app includes a video blur tool. Use any mobile editor that offers a blur or mosaic effect and export at the highest quality it allows. A useful fallback: upload the clip to your own YouTube channel as private or unlisted, blur it in Studio on a computer, then download the edited file and delete the upload.
Do I have to blur the whole video or just a section?
Only the seconds where the detail is visible. In FFmpeg that is an enable expression such as between(t,2,4); in Studio it is the ends of the timeline under the blur box, dragged to the moment the blur should start and stop. Leaving it on for the full clip looks sloppy and takes longer to process.
Does blurring really hide what is underneath?
A heavy blur does, and a light one does not. Once a strong blur is exported the pixels are no longer recoverable, but a small radius leaves shapes and edges readable, and coarse pixelation can be partly reconstructed by machine-learning tools. When in doubt, go stronger.
Can I undo a blur after exporting?
No, not from the exported file. The blurred pixels replaced the original ones, and there is nothing underneath to recover. You can only re-export from an untouched copy, so keep the original file before you start and never overwrite it.
Does blurring damage the quality of the rest of the frame?
Not the content of it, but the file is re-encoded, so there is a small generational loss across the whole picture. Export at a CRF close to the source and the difference is invisible in practice. Export at a high CRF to save space and the softness will show in the unblurred areas too.
Is a blur enough if the problem is a spoken name?
No. Blur is a visual edit and leaves the audio untouched, so anything said out loud is still there. For a voice you need to mute that section, cut it out, or replace it with a tone. That is a separate pass, and it is worth checking the audio before you export the picture.
Will YouTube’s blur editor work on a video that is not mine?
No. The Studio editor only works on videos on your own channel, which is a sensible limit. You cannot open somebody else’s upload and edit it, and you should not publish a clip you have no right to use even if a blur would hide part of it.
Which method should you use?
Pick FFmpeg when the detail is fixed in the frame and the file is on your machine. A sign, a plate on a parked car, a document on a desk: the one-liner is faster than opening an editor, and it drops neatly into a script if you have several clips to treat the same way.
Pick Studio when the subject moves, when the video is already live, or when you need several short blur windows scattered through a long clip. Dragging timeline ends beats writing enable expressions by hand.
Pick neither when cropping removes the detail for good. Nothing in that decision is expensive, and how to blur a video is the easy half of the job.
Treat the blur as one step rather than the whole fix if the clip also carries location data or sensitive audio. Blur protects the picture. Everything else in the file needs its own pass.