If you’re comfortable typing a command, FFmpeg can be faster and easier to script for many files. Below are three common scenarios:
Tip: Replace
input.mkvandoutput.mp4with your actual file names. reducing mosaicfsdss617 natsu igarashi 1080p best
| Goal | Tool & Setting |
|------|----------------|
| Keep original subtitles | HandBrake: under Subtitles, tick “Add All Subtitles”.
FFmpeg: -c:s copy (copy them unchanged) |
| Remove a hard‑coded mosaic (if the source actually has a visual mosaic overlay you want to hide) | Unfortunately you can’t truly “undo” a mosaic, but you can blur it further to make it less distracting:
ffmpeg -i input.mkv -vf "crop=width:height:x:y,boxblur=5:1" … (replace crop values with the area covering the mosaic). |
| Speed up playback on low‑end devices | Downscale to 720p or 480p; also consider reducing the audio bitrate to 96 kbps for speech‑heavy content. |
| Create a “high‑quality master” for archiving | Encode with lossless settings (-crf 0 in FFmpeg, or HandBrake’s “HQ 1080p30 Surround” preset) and keep the original file untouched. |
| Verify file integrity | Use ffprobe -v error -show_entries format=duration,bit_rate -of default=noprint_wrappers=1:nokey=1 output.mp4 to compare durations and bitrates. | If you’re comfortable typing a command, FFmpeg can
Make a Small Test Clip (10‑second segment) Tip: Replace input
ffmpeg -ss 00:12:00 -t 10 -i source.mkv -c copy test_clip.mkv
This lets you iterate quickly without re‑encoding the whole movie each time.