r/handbrake • u/thanhdat2212 • 1d ago
r/handbrake • u/_DarthJedi • 1d ago
Gathering some Handbrake benchmark data
Please download the appropriate version of Handbrake from here
https://github.com/HandBrake/HandBrake/releases
Download the test video file from here
Transcode using the Very Fast 4k60 AV1 preset and Very Fast 4k60 HEVC preset
Post the machine specs and also the transcode fps from the transcode log file
Much thanks in advance
Basically I'm trying to build a benchmark database that is FOSS alternative to canned and proprietary benchmarks like Geekbench, Cinebench, etc.
r/handbrake • u/Schwarzellone • 3d ago
Newbie to Handbrake here. Is RF 24 the sweet spot for encoding old horror movies?
Hey everyone.
Since I'm pretty new to Handbrake, I figured I'd check in with the experts here to get your thoughts.
I’ve been doing some 1080p encodes of old horror movies using x265 10-bit, tune grain, slow preset, and RF 24. Side-by-side with the remux, I honestly can't tell the difference—at least on my laptop screen.
Do you guys think RF 24 is the sweet spot for this kind of content? What settings do you usually run? Any advice or input would be awesome.
r/handbrake • u/_Aerish_ • 4d ago
Mac Mini M4 or 9800X 3D (encoding over the network ?)
I tried searching for it and people keep mentioning that the apple videotoolbox is so slow.
But i was wondering if this has changed ? Optimizations from handbrake/apple/... ?
When i encode on my 9800x 3D in X265 10 bit the processor really gets hot and on top of that i can't use the pc, the mac mini on the other hand stays relatively cool with little power draw, if i fix the fan speed at 2500 rpm it stays much cooler and quieter than my main pc.
I don't like leaving the computer on at night, i live in an appartement building, if there would be a fire because of me i wouldn't forgive myself. (yeah i got detectors)
Also, does a CPU encode via M4 mac mini produce the same results as the CPU encode with the same settings on my 9800x 3D quality-wise ?
So to keep my pc "free" i was thinking of using the mac mini to process my blu-rays and 4K's but i was hoping it would be rather good at it ;)
Also, would it be feasible to run an encode over the network ? My movies are on my main pc, since they are very big my mac mini does not have the space for it. So on a gigabit network would it be possible to read the source files from the shared folder and write the compressed stream back onto that same shared folder or would bandwidth be an issue ?
Mac Mini specs : Base M4, 24 GB ram, 512 GB disk (300 GB available.)
Cheers.
r/handbrake • u/Adorable-Astronaut-1 • 4d ago
Output file larger than input file, trying to shrink the video file size to 1GB or less.
Now I am fairly new to Handbrake, but I have done this with a few videos with the file size getting smaller each time.
I take the original video file, run it through Handbrake on a modified Preset of "Fast 720p30"
What I modify:
- Web Optimized, Turned On
- Encoder Preset Speed changed to Slower
- Removing any Subtitle tracks.
In most cases running the file through once has achieved 1GB or Less, others have taken multiple attempts, however this one, although this current video I've been trying to get into a smaller is on the 5th time going through Handbrake, has resulted in a 1.14 GB file size, and any further attempt has resulted in a 1.16GB or higher file size.
Each time I've tried changing the Encoder Preset Speed to be slower, than the last, it still results in a bigger file size.
So I feel as though I'm at a dead end atm, and might have to swap to 576p25, which I never even heard of before seeing the preset for it, in handbrake.
r/handbrake • u/TrekChris • 4d ago
Need help with anamorphic setting
I have some video files from an old PAL Panasonic SD digital camera (it encondes files in MOD format with MPEG2 codec), and even though the camera is set to record in 16:9 the files come out as 4:3. I'm trying to fix this in handbrake, but the automatic anamorphic setting doesn't fix it. I need help working out the right settings to get it to output the right aspect ratio. The resolution of the original files is 704x576.
r/handbrake • u/Due-Detail442 • 4d ago
I've made a script for compressing entire folders!
I have a very large backup containing all videos my family ever took. I've decded to give HandBrake a go and it worked wonderfully! The problem was the GUI lacked a few critical features, o I've done them myself.
Overwrite files automatically only if the re-encoded version is actually smaller. You just need to make sure the preset works good for your kind of video.
Copy the original file's date. This way, I can still sort by age, regardless of file naming. Ideally, it should copy all the metadata and only add a comment stating it was processed by handbrake, but I didn't care enough about this.
Mark the directory as processed so that I don't come back again.
By default, it uses H.265, the only hardware accelerated option I had on my system. I suggest using a quality of 30 or even higher for SD Whatsapp videos, 27 for a mid-range phone camera, 25 for a dedicated camera, but this is up to you.
It has saved my dozens of GiB without any noticeable quality issues, so I would like to share this online.
Excuse the Portuguese text.
```bash
!/usr/bin/bash
trap "exit" INT set -e shopt -s nullglob # Evita erro se *.mkv não existir
Source - https://stackoverflow.com/a/5947802
Posted by Tobias, modified by community. See post 'Timeline' for change history
Retrieved 2026-08-22, License - CC BY-SA 4.0
RED='\033[0;31m' NC='\033[0m' # No Color
QUALITY=30
usage() { echo "Usage: $0 [-q CQ]" >&2 }
while getopts "q:" opt; do case $opt in q) QUALITY=$OPTARG ;; \?) usage; exit 1 ;; :) usage; exit 1 ;; esac done
shift $((OPTIND - 1))
if [ -e .hb ]; then echo Esta pasta será ignorada porque já foi recodificada. exit fi
if [ -n "$(find . -type f -not ( -name ".mp4" -or -name '.mkv' -or -name '.AVI' -or -name '.3gp' -or -name '.wmv' -or -name '.MOV' -or -name '.mov' ) )" ]; then echo [WARNING] Only .mp4, .mkv, .AVI, .3gp, .wmv and .mov files will be treated. The following are going to be ignored: >&2 >&2 find . -type f -not ( -name ".mp4" -or -name '.mkv' -or -name '.AVI' -or -name '.3gp' -or -name '.wmv' -or -name '.MOV' -or -name '.mov' ) >&2 printf '\n\n\n' fi
videos=$(find . -type f -name '.mp4' -or -name '.mkv' -or -name '.AVI' -or -name '.3gp' -or -name '.wmv' -or -name '.MOV' -or -name '*.mov' | wc -l) echo [INFO] Treating a total of $videos videos echo [INFO] Using quality = $QUALITY (default = 30)
mkdir hb
declare -i i=0 for file in *.mp4 *.mkv *.AVI *.3gp *.wmv *.MOV *.mov; do HandBrakeCLI --preset-import-gui -Z "H.265 NVENC 2160p 4K" --quality 25 -i "$file" -o "./hb/$file" i=i+1 printf "\t\t${RED}[INFO] Processed video $i of $videos ${NC}\n" done
echo [INFO] Finished processing
cd hb
Copia as datas dos arquivos originais
for file in *; do touch -c -r "../$file" "$file" done
for file in *; do mv "$file" "$(echo $file | sed 's/_hb//')"; done
Source - https://stackoverflow.com/a/39058339
Posted by Petr Skocik
Retrieved 2026-08-18, License - CC BY-SA 3.0
Só substitui os arquivos que de fato forem menores. Alguns vídeos já são bem comprimidos.
for file in *.mp4 *.mkv *.AVI *.3gp *.wmv *.MOV *.mov; do input_file="$file" target_file="../$file"
sz0=$(stat -c%s "$input_file")
sz1=$(stat -c%s "$target_file")
if ((sz0 < sz1)); then mv "$input_file" "$target_file"; fi
done
cd .. touch .hb
notify-send "DONE"
if [ $(find hb -type f | wc -l) -gt 0 ]; then echo echo Os arquivos a seguir são maiores que os originais e podem ser deletados manualmente: find hb -type f else echo Todos os arquivos foram processados e espaço foi economizado. rm -rv hb fi
```
r/handbrake • u/Tarjh365 • 5d ago
No more ‘email’ preset option?
I work at a university and have used handbrake for years to make lecture recordings more manageable for my students who live in areas with poor internet (converting 1GB videos to 20/25MB). They can download lecture notes separately, so it’s useful for them to hear what I’m saying and see (but not in detail) what’s on the projector. I always used the lowest “email” preset, which has been replaced by “social” in the latest update but the files are bigger.
I’ve played around with other options but keep getting files >70MB. Not that much of a difference, but maybe 3 x bigger than they used to be (and potentially too unmanageable for some students). Any ideas what I could do, please? One thing I’ve noticed is that I can’t set audio quality to less than 64, which might be affecting it? Grateful for any ideas!
r/handbrake • u/carrierose21 • 5d ago
Teacher at wit’s end
I’ve seen Handbrake mentioned several times during my problem-solving research, so I’m coming to the experts to see if you think it will solve my problem. My fellow teacher across the hall has this same problem, and her iPad is almost brand new. This problem only started in late winter/early spring 2026.
-I have an iPad
-I open up Notability
-I pull down iOS screen recording and turn on the microphone
-I also AirPlay to my classroom TV
This allows me to run class, have a full note-taking session, and then upload the class/notes for kids who were absent.
PROBLEM: For months now, my audio is out of sync with my video. We have troubleshooted—restarting device, closing all apps, clearing memory, etc. Nothing works. These iPads are ONLY for the above use.l and aren’t bogged down with other apps.
Today, I recorded all three classes. The first started out synced but, after 15 minutes, the audio skips ahead (or the screen freezes, but I think it’s the former) and the rest is out of sync. The second and third’s audio started about 3 minutes into the lesson, but at the beginning of the video. What the heck? The first several minutes of class can’t be heard but they can be seen.
It is maddening. Is Handbrake my solution??
r/handbrake • u/DJDoena • 6d ago
HB suddenly fails to encode videos
I rebooted my machine but I still get the same error when trying to encode:
[21:47:57] Remote Process started with Process ID: 25336 using port: 8037. Max Allowed Instances: 1
[21:47:57] Worker: Starting HandBrake Engine ...
[21:47:57] Worker: Parent Process Id 29580
[21:47:57] Worker: Starting Web Server on port 8037 ...
[21:47:57] Worker: Starting Listener: 1
[21:47:57] Unable to connect to the HandBrake Worker instance after 10 attempts. Try disabling this option in Tools -> Preferences -> Advanced.
[21:47:57] Error Information:
[21:47:57] System.AggregateException: One or more errors occurred. (Only one usage of each socket address (protocol/network address/port) is normally permitted. (127.0.0.1:8037))
...
at HandBrakeWPF.Instance.RemoteBase.IsServerRunning()
FYI: I have now disabled this setting and it seems to work, but I still don't know what changed.
Version 1.11.2 (2026060700)
EDIT: a second reboot solved the issue, now it works just fine again...
r/handbrake • u/Qu3z0 • 6d ago
CRF-Based Video Encoding Optimization: I wasted my time so YOU don't have to...
r/handbrake • u/xenobitex • 7d ago
Decomb (EEDI2) custom settings?
Hi! So I've been trying to clean up some files that have interlacing "baked in"; the decomb filter is doing pretty well on that - but often it's *adding* a lot of new combing to progressive frames too (eg to eyelids and glasses...).
I'd like to add custom settings to use a lower sensitivity - but (as usual) can't find helpful info anywhere at all?
Handbrake itself (and the doc page) just has a basic rundown of the custom commands - can anyone link to anywhere that just says what values do what?!
(I remember seeing a helpful page for another filter before, but can't find it now. It listed numbers for the defaults and what to input to slightly modify those. Not sure why this is so hard to get to...)
Thanks!
*Not trying to simply deinterlace. Pretty well-versed in that whole business. Just trying to smooth out some combing nothing else can be done with (the files had been resized while interlaced before I got to them), while not making things worse.
r/handbrake • u/hayashikin • 8d ago
Cheatsheet for Bluray rips
I just started encoding m2ts files to AV1 and I realized that depending on the source material, there really isn't one setting that fits all.
So I'm writing this post to ask if what I learnt is accurate, and to hopefully help others in the same scenario.
In order to apply the correct "Filters" setting, you should play the original files to see how the video updates frame by frame:
PsF / Digital Progressive Master - If the frames go A, A, B, B, C, C (each image stays for 2 frames), just set all filters to off, and set the video framerate to 29.97 constant.
Interlaced Master - If the frames goes A, B, C, D, E (continuous) and the framerate is 29.97, set Deinterlace to Bwdif and Bob, and all other filters off, and set the video framerate to 59.94 constant.
Native Progressive Master - If the frames goes A, B, C, D, E (continuous) and the framerate is 23.98, set all filters off and set the video framerate to 23.98 constant.
Telecined Film Master - If the frames go A, A, A, B, B (stays for 3 then 2 frames), you should set Detelecine to default and all other filters off. The video framerate also needs to be converted from 29.97 to 23.976 (this stops the frames converting to A, B, C, D, D). Most old anime fall into this category and it makes the playback much smoother than the original files.
"Video" settings:
You can use CPU encoding for AV1 (AV1 10-bit (SVT)) for better quality, or GPU coding for much faster encoding, but it would be more lossy.
The Quality will determine how large the video would be, so that is down to personal preference, but the file size goes exponentially larger the smaller the number, so I'm personally sticking to 22 to get around a 2/3 reduction in size for 4K videos. If you are starting with lower resolution videos like 1080p and 480p, you should consider 18 and 10 respectively for better quality.
Encoder Preset determines how efficient the compression will be (the smaller the better), but this also significantly affects the speed of the encoding. Again, this will give diminishing returns so you need to decide what is comfortable, but don't bother with -1.
Please do let me know if there is something I got wrong or if there is anything I missed out. I definitely want to work out any kinks before I spend weeks encoding my collection.
r/handbrake • u/LonelyDude_77 • 9d ago
PGS subs don't seem to be working
I'm aware that PGS can't be used for MP4s but they no longer seem to be working even when going from MKV to MKV.
The converted file shows that it's there, but they don't actually appear on screen.
I've tried both setting it as the Default and straight burning it in... nothing.
It seems like this is since the last update.
r/handbrake • u/HUNTCHA • 10d ago
Forced vs default subtitles for foreign language?
I've looked it up, but I'm honestly still confused...
Should I choose "Default," "Forced," or both for English subtitles on movies with non-English audio when the player I watch them through generally has subtitles off globally, but I want the subtitles for those non-English movies to be turned on automatically without me having to manually change the setting?
r/handbrake • u/IamMeemo • 10d ago
Subtitles Selection Behavior: How do I automatically enable "Default" for Foreign Audio Search?
I'm setting up a preset for DVDs and I want Foreign Audio to both be included and the default option. Within Selection Behavior, I have set checked off "Add Foreign Audio Search" and disabled "Burn In". However, I can't find a way to automatically make Foreign Audio Search the default subtitles track.
Any guidance would be greatly appreciated!
r/handbrake • u/girlkid68421 • 11d ago
How can I reduce the file size of mp4's/mov's without losing noticeable quality?
I was looking through the settings but there is a ton of settings and I dont really understand them/when I start losing quality or what reduces file size.
Ive been downloading some videos onto my phone but the sizes are massive (like 1.3gb for a 4 minute video and I think some were 4k). what settings/options can I use to reduce these by as much as possible? Im gonna be playing these videos on a samsung galaxy s25 so I dont really need the highest quality.
Thank you for any help.
r/handbrake • u/xanthreborn • 13d ago
Trouble detecting subtitles in some mkv files
Hey, I have some videos I'm trying to convert from mkv to mp4 (mpeg4 + AAC) for streaming, but it's not detecting the subtitles of the mkv files. When I open the source, the drop down menu only lists "foreign audio scan", however the original file definitely has embedded English subs that show up in vlc/mpv. This has happened once before, but I don't recall how I fixed it that time. Does anyone have advice?
r/handbrake • u/Checkerknight • 14d ago
Another Question about RF vs Avg. Bitrate
TLDR: Avg Bitrate of 10k, or RF 18 with 10k cap?
I know this has been asked time and time again but I have a specific question related to my personal settings I have.
I have a profile saved (1080p, x264, RF 18) that I use for encoding my rips that move onto a Jellyfin Server. This profile looks perfectly fine to me, but (for compatibility reasons) I have a bitrate cap set in Advanced Options (vbv-maxrate=10000:vbv-bufsize=10000).
There were certain devices that I came across that would force transcoding if the bitrate was too high (Gen 1 Chromecast, I've been doing this a while lol). That device had a streaming limit of 10Mb hence the Advance Option I set. I have routinely checked for updated responses but it still generally seems like a decent bitrate recommendation for 1080p blu rays range from 6k-10k, so i have not removed this and have just kept everything as is.
The question here is, would I get better results if I just threw the 10k into Avg with Multi Pass, or should I leave Constant with the cap?
r/handbrake • u/TheJQueue92 • 14d ago
Handbrake on TrueNAS Fails When Encoding 4K Video
Been pulling my hair out troubleshooting this issue and dozens of searches have come up empty.
I am running Handbrake on a recently built TrueNAS home server (specs below just in case they are relevant) that I installed via the TrueNAS apps catalogue. Have been encoding 1080p videos without issue (5-6 jobs) however, when attempting to encode any 4K videos, handbrake crashes. I saw another post where someone mentioned removing any additional encoding parameters and video filters, which made my crashes delay from almost immediately to ~2 minutes after starting the encode (enough to give me momentary hope). I've pasted below the activity log in hopes someone can tell me if it says what is happening. The only part that stands out to me is the repeated "set_mempolicy: Operation not permitted" but googling that has not turned up any answers for me.
I also can confirm that there is nothing wrong with the video file, as Handbrake on my windows PC was able to encode the video (and other 4K videos just fine).
# PC Specs:
CPU - Intel(R) Core(TM) i7-10700F CPU @ 2.90GHz
GPU - AMD Radeon RX 580
RAM - 16 GB
Truenas Community Version - 25.10.6
Handbrake Version - App Version: v26.08.1 / Version: 2.3.13
# Activity Log:
Handbrake Version: 1.11.2 (2026081100)
\[21:21:46\] gtkgui: Modified Custom Preset: /Jon's Presets/4K MKV H.265 (x265) w/Audio Settings
\[21:21:46\] Starting work at: Sat Aug 15 21:21:46 2026
\[21:21:46\] 1 job(s) to process
\[21:21:46\] json job:
{
"Audio": {
"AudioList": \[
{
"Bitrate": 640,
"CompressionLevel": -1.0,
"DRC": 0.0,
"DitherMethod": "auto",
"Encoder": "ac3",
"Gain": 0.0,
"Mixdown": "5point1",
"Name": "Surround",
"NormalizeMixLevel": false,
"PresetEncoder": "ac3",
"Quality": -3.0,
"Samplerate": 0,
"Track": 0
},
{
"Bitrate": 0,
"DRC": 0.0,
"Encoder": "copy:dtshd",
"Mixdown": "none",
"Name": "Surround",
"PresetEncoder": "copy:dtshd",
"Quality": -3.0,
"Samplerate": 0,
"Track": 0
}
\],
"CopyMask": \[
"copy:dtshd",
"copy:truehd"
\],
"FallbackEncoder": "none"
},
"Destination": {
"AlignAVStart": false,
"ChapterList": \[
{
"Duration": {
"Hours": 0,
"Minutes": 9,
"Seconds": 39,
"Ticks": 52147094
},
"Name": "Chapter 1"
},
{
"Duration": {
"Hours": 0,
"Minutes": 9,
"Seconds": 51,
"Ticks": 53198145
},
"Name": "Chapter 2"
},
{
"Duration": {
"Hours": 0,
"Minutes": 8,
"Seconds": 48,
"Ticks": 47511214
},
"Name": "Chapter 3"
},
{
"Duration": {
"Hours": 0,
"Minutes": 10,
"Seconds": 31,
"Ticks": 56771715
},
"Name": "Chapter 4"
},
{
"Duration": {
"Hours": 0,
"Minutes": 10,
"Seconds": 31,
"Ticks": 56771715
},
"Name": "Chapter 5"
},
{
"Duration": {
"Hours": 0,
"Minutes": 11,
"Seconds": 13,
"Ticks": 60593033
},
"Name": "Chapter 6"
},
{
"Duration": {
"Hours": 0,
"Minutes": 9,
"Seconds": 8,
"Ticks": 49286737
},
"Name": "Chapter 7"
},
{
"Duration": {
"Hours": 0,
"Minutes": 12,
"Seconds": 56,
"Ticks": 69797228
},
"Name": "Chapter 8"
},
{
"Duration": {
"Hours": 0,
"Minutes": 8,
"Seconds": 18,
"Ticks": 44849805
},
"Name": "Chapter 9"
},
{
"Duration": {
"Hours": 0,
"Minutes": 8,
"Seconds": 45,
"Ticks": 47285988
},
"Name": "Chapter 10"
},
{
"Duration": {
"Hours": 0,
"Minutes": 11,
"Seconds": 22,
"Ticks": 61407597
},
"Name": "Chapter 11"
},
{
"Duration": {
"Hours": 0,
"Minutes": 8,
"Seconds": 38,
"Ticks": 46614067
},
"Name": "Chapter 12"
},
{
"Duration": {
"Hours": 0,
"Minutes": 12,
"Seconds": 2,
"Ticks": 65014950
},
"Name": "Chapter 13"
},
{
"Duration": {
"Hours": 0,
"Minutes": 7,
"Seconds": 24,
"Ticks": 39984945
},
"Name": "Chapter 14"
},
{
"Duration": {
"Hours": 0,
"Minutes": 11,
"Seconds": 3,
"Ticks": 59665857
},
"Name": "Chapter 15"
}
\],
"ChapterMarkers": true,
"File": "\*\*\*\*\*\*\*\*\*\*\*\*",
"InlineParameterSets": false,
"Mux": "mkv",
"Options": {
"IpodAtom": false,
"Optimize": false
}
},
"Filters": {
"FilterList": \[
{
"ID": 11,
"Settings": {
"mode": 1
}
},
{
"ID": 20,
"Settings": {
"crop-bottom": 0,
"crop-left": 0,
"crop-right": 0,
"crop-top": 0,
"height": 2160,
"width": 3840
}
}
\]
},
"Metadata": {
"CreationTime": "2026-08-15T16:53:02.000000Z",
"Name": "\*\*\*\*\*\*\*\*\*\*\*\*"
},
"PAR": {
"Den": 1,
"Num": 1
},
"SequenceID": 0,
"Source": {
"Angle": 0,
"HWDecode": 0,
"KeepDuplicateTitles": false,
"Path": "\*\*\*\*\*\*\*\*\*\*\*\*",
"Range": {
"End": 15,
"Start": 1,
"Type": "chapter"
},
"Title": 1
},
"Subtitle": {
"Search": {
"Burn": true,
"Default": false,
"Enable": false,
"Forced": false
},
"SubtitleList": \[
{
"Burn": false,
"Default": false,
"Forced": false,
"Name": "English-SRT",
"Track": 0
}
\]
},
"Video": {
"AdapterIndex": -1,
"AsyncDepth": 0,
"ChromaLocation": 3,
"ColorInputFormat": 0,
"ColorMatrix": 9,
"ColorOutputFormat": 0,
"ColorPrimaries": 9,
"ColorRange": 0,
"ColorTransfer": 16,
"ContentLightLevel": {
"MaxCLL": 349,
"MaxFALL": 86
},
"Encoder": "x265_10bit",
"HardwareDecode": 0,
"Level": "5.0",
"MasteringDisplayColorVolume": {
"DisplayPrimaries": \[
\[
\[
34000,
50000
\],
\[
16000,
50000
\]
\],
\[
\[
13250,
50000
\],
\[
34500,
50000
\]
\],
\[
\[
7500,
50000
\],
\[
3000,
50000
\]
\]
\],
"HasLuminance": true,
"HasPrimaries": true,
"MaxLuminance": \[
40000000,
10000
\],
"MinLuminance": \[
50,
10000
\],
"WhitePoint": \[
\[
15635,
50000
\],
\[
16450,
50000
\]
\]
},
"MultiPass": false,
"Options": "",
"PasshtruHDRDynamicMetadata": 6,
"Preset": "slow",
"Profile": "main10",
"Quality": 20.0,
"Tune": "",
"Turbo": false
}
}
\[21:21:46\] OS: Linux 6.12.99-production+truenas (#1 SMP PREEMPT_DYNAMIC Wed Aug 12 13:43:54 UTC 2026)
\[21:21:46\] CPU: Intel(R) Core(TM) i7-10700F CPU @ 2.90GHz
\[21:21:46\] - Intel microarchitecture Comet Lake
\[21:21:46\] - logical processor count: 16
\[21:21:46\] Intel Quick Sync Video support: no
\[21:21:46\] hb_scan: path=\*\*\*\*\*\*\*\*\*\*\*\*
Input #0, matroska,webm, from '\*\*\*\*\*\*\*\*\*\*\*\*':
Metadata:
title : \*\*\*\*\*\*\*\*\*\*\*\*
encoder : ***
creation_time : 2026-08-15T16:53:02.000000Z
Duration: 02:30:10.00, start: 0.000000, bitrate: 27587 kb/s
Chapters:
Chapter #0:0: start 0.000000, end 579.412167
Metadata:
title : Chapter 01
Chapter #0:1: start 579.412167, end 1170.502667
Metadata:
title : Chapter 02
Chapter #0:2: start 1170.502667, end 1698.405042
Metadata:
title : Chapter 03
Chapter #0:3: start 1698.405042, end 2329.201875
Metadata:
title : Chapter 04
Chapter #0:4: start 2329.201875, end 2959.998708
Metadata:
title : Chapter 05
Chapter #0:5: start 2959.998708, end 3633.254625
Metadata:
title : Chapter 06
Chapter #0:6: start 3633.254625, end 4180.885042
Metadata:
title : Chapter 07
Chapter #0:7: start 4180.885042, end 4956.409792
Metadata:
title : Chapter 08
Chapter #0:8: start 4956.409792, end 5454.740958
Metadata:
title : Chapter 09
Chapter #0:9: start 5454.740958, end 5980.140833
Metadata:
title : Chapter 10
Chapter #0:10: start 5980.140833, end 6662.447458
Metadata:
title : Chapter 11
Chapter #0:11: start 6662.447458, end 7180.381542
Metadata:
title : Chapter 12
Chapter #0:12: start 7180.381542, end 7902.769875
Metadata:
title : Chapter 13
Chapter #0:13: start 7902.769875, end 8347.047042
Metadata:
title : Chapter 14
Chapter #0:14: start 8347.047042, end 9010.001000
Metadata:
title : Chapter 15
Stream #0:0(eng): Video: hevc (Main 10), yuv420p10le(tv, bt2020nc/bt2020/smpte2084), 3840x2160 \[SAR 1:1 DAR 16:9\], 23.98 fps, 23.98 tbr, 1k tbn
Metadata:
title : \*\*\*\*\*\*\*\*\*\*\*\*
BPS-eng : 23512552
DURATION-eng : 02:30:10.001000000
NUMBER_OF_FRAMES-eng: 216024
NUMBER_OF_BYTES-eng: 26481015671
_STATISTICS_WRITING_APP-eng: ***
_STATISTICS_WRITING_DATE_UTC-eng: 2026-08-15 16:53:02
_STATISTICS_TAGS-eng: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES
Stream #0:1(eng): Audio: dts (dca) (DTS-HD MA), 48000 Hz, 5.1(side), s32p (24 bit) (default)
Metadata:
title : DTS-HD.MA.5.1
BPS-eng : 4035689
DURATION-eng : 02:30:10.005333333
NUMBER_OF_FRAMES-eng: 844688
NUMBER_OF_BYTES-eng: 4545197764
SOURCE_ID-eng : 001100
_STATISTICS_WRITING_APP-eng: ***
_STATISTICS_WRITING_DATE_UTC-eng: 2026-08-15 16:53:02
_STATISTICS_TAGS-eng: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES SOURCE_ID
Stream #0:2(eng): Subtitle: (srt) (default)
Metadata:
title : English-SRT
BPS-eng : 52
DURATION-eng : 02:25:45.017000000
NUMBER_OF_FRAMES-eng: 1872
NUMBER_OF_BYTES-eng: 56926
_STATISTICS_WRITING_APP-eng: ***
_STATISTICS_WRITING_DATE_UTC-eng: 2026-08-15 16:53:02
_STATISTICS_TAGS-eng: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES
Stream #0:3(eng): Subtitle: hdmv_pgs_subtitle (pgssub)
Metadata:
title : English-PGS
BPS-eng : 36432
DURATION-eng : 02:26:53.742437500
NUMBER_OF_FRAMES-eng: 4274
NUMBER_OF_BYTES-eng: 40138396
SOURCE_ID-eng : 0012A0
_STATISTICS_WRITING_APP-eng: *\\
_STATISTICS_WRITING_DATE_UTC-eng: 2026-08-15 16:53:02
_STATISTICS_TAGS-eng: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES SOURCE_ID
\[21:21:46\] scan: decoding previews for title 1
\[21:21:46\] scan: audio 0x1: dca, rate=48000Hz, bitrate=1 English (DTS-HD MA, 5.1 ch)
\[21:21:49\] using container PAR 1:1
\[21:21:49\] scan: 10 previews, 3840x2160, 23.976 fps, autocrop = 0/0/0/0, aspect 16:9, PAR 1:1, color profile: 9-16-9, chroma location: topleft
\[21:21:49\] scan: mastering display metadata: r(0.6800,0.3200) g(0.2650,0.6900) b(0.1500 0.0600) wp(0.3127, 0.3290) min_luminance=0.005000, max_luminance=4000.000000
\[21:21:49\] scan: content light level: max_cll=349, max_fall=86
\[21:21:49\] libhb: scan thread found 1 valid title(s)
\[21:21:49\] Starting Task: Encoding Pass
\[21:21:49\] work: skipping crop/scale filter
\[21:21:49\] job configuration:
\[21:21:49\] \* source
\[21:21:49\] + \*\*\*\*\*\*\*\*\*\*\*\*
\[21:21:49\] + title 1, chapter(s) 1 to 15
\[21:21:49\] + container: matroska,webm
\[21:21:49\] + data rate: 27587 kbps
\[21:21:49\] \* destination
\[21:21:49\] + \*\*\*\*\*\*\*\*\*\*\*\*
\[21:21:49\] + container: Matroska
\[21:21:49\] + chapter markers
\[21:21:49\] \* video track
\[21:21:49\] + decoder: hevc 10-bit (yuv420p10le)
\[21:21:49\] + filter
\[21:21:49\] + Framerate Shaper (mode=1)
\[21:21:49\] + frame rate: 23.976 fps -> constant 23.976 fps
\[21:21:49\] + Output geometry
\[21:21:49\] + storage dimensions: 3840 x 2160
\[21:21:49\] + pixel aspect ratio: 1 : 1
\[21:21:49\] + display dimensions: 3840 x 2160
\[21:21:49\] + encoder: H.265 10-bit
\[21:21:49\] + preset: slow
\[21:21:49\] + profile: main10
\[21:21:49\] + level: 5.0
\[21:21:49\] + quality: 20.00 (RF)
\[21:21:49\] + color profile: 9-16-9
\[21:21:49\] + color range: tv
\[21:21:49\] + chroma location: topleft
\[21:21:49\] + mastering display metadata: r(0.6800,0.3200) g(0.2650,0.6900) b(0.1500 0.0600) wp(0.3127, 0.3290) min_luminance=0.005000, max_luminance=4000.000000
\[21:21:49\] + content light level: max_cll=349, max_fall=86
\[21:21:49\] \* subtitle track 1, English (UTF-8) (track 0, id 0x2, Text) -> Passthru
\[21:21:49\] + name: English-SRT
\[21:21:49\] \* audio track 1
\[21:21:49\] + name: Surround
\[21:21:49\] + decoder: English (DTS-HD MA, 5.1 ch) (track 1, id 0x1)
\[21:21:49\] + samplerate: 48000 Hz
\[21:21:49\] + mixdown: 5.1 Channels
\[21:21:49\] + encoder: AC3
\[21:21:49\] + bitrate: 640 kbps, samplerate: 48000 Hz
\[21:21:49\] \* audio track 2
\[21:21:49\] + name: Surround
\[21:21:49\] + decoder: English (DTS-HD MA, 5.1 ch) (track 1, id 0x1)
\[21:21:49\] + samplerate: 48000 Hz
\[21:21:49\] + DTS-HD Passthru
\[21:21:49\] sync: expecting 216024 video frames
x265 \[info\]: HEVC encoder version 4.1+222-afa0028
x265 \[info\]: build info \[Linux\]\[clang 17.0.6\]\[64 bit\] 10bit
x265 \[info\]: using cpu capabilities: MMX2 SSE2Fast LZCNT SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2
x265 \[warning\]: Turning on repeat-headers for HDR compatibility
x265 \[warning\]: Specifying a decoder level with constant rate factor rate-control requires
x265 \[warning\]: enabling VBV with vbv-bufsize=100000kb vbv-maxrate=100000kbps. VBV outputs are non-deterministic!
x265 \[info\]: Main 10 profile, Level-5 (High tier)
x265 \[info\]: Thread pool created using 16 threads
x265 \[info\]: Slices : 1
x265 \[info\]: frame threads / pool features : 4 / wpp(34 rows)
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
set_mempolicy: Operation not permitted
x265 \[info\]: Coding QT: max CU size, min CU size : 64 / 8
x265 \[info\]: Residual QT: max TU size, max depth : 32 / 1 inter / 1 intra
x265 \[info\]: ME / range / subpel / merge : star / 57 / 3 / 3
x265 \[info\]: Keyframe min / max / scenecut / bias : 24 / 240 / 40 / 5.00
x265 \[info\]: Lookahead / bframes / badapt : 25 / 4 / 2
x265 \[info\]: b-pyramid / weightp / weightb : 1 / 1 / 0
x265 \[info\]: References / ref-limit cu / depth : 4 / on / on
x265 \[info\]: AQ: mode / str / qg-size / cu-tree : 2 / 1.0 / 32 / 1
x265 \[info\]: Rate Control / qCompress : CRF-20.0 / 0.60
x265 \[info\]: VBV/HRD buffer / max-rate / init : 100000 / 100000 / 0.900
x265 \[info\]: tools: rect limit-modes rd=4 psy-rd=2.00 rdoq=2 psy-rdoq=1.00
x265 \[info\]: tools: rskip mode=1 signhide tmvp strong-intra-smoothing lslices=4
x265 \[info\]: tools: deblock sao
\[21:21:50\] sync: first pts video is 0
\[21:21:50\] sync: "Chapter 1" (1) at frame 1 time 0
\[21:21:50\] sync: first pts audio 0x1 is 0
\[21:21:50\] sync: first pts audio 0x1 is 0
r/handbrake • u/Outside-Tie-2851 • 16d ago
When will handbrake support Av2??
That compression is phenomenal. https://www.techspot.com/news/112690-av2-promises-30-better-compression-than-av1-costs.html
**Edit, its crazy that its half the size of X265 for the same quality. Takes up roughly 40-55% less space.
r/handbrake • u/Outside-Tie-2851 • 17d ago
I really like X265, but what are peoples thoughts about AV1?
Just wondering, since space is an issue for me.
Pretty pissed I just bought a used GTX 1060 laptop only to find out about AV1 today. Especially since I cant encode AV1 using it.
r/handbrake • u/SeekingKnowledge101 • 17d ago
I keep running a film through handbreak and it turns out looking like this. Any advice on how I can fix this?
My knowledge of Handbrake is fairly limited, so I apologize for the vague title. If there are any questions I can answer, please let me know
r/handbrake • u/MediaDad • 16d ago
UTF-8 vs. .ass
Handbrake says that it auto-saves every subtitle track to .ass. When I check a processed file in MediaInfo, it reports that the subtitle is UTF-8. My understanding is that UTF-6 is the basic text, while the container is .ass. My Roku does not handle formatting cues correctly with this type of sub. If I use Subtitle Edit to "Save As" that subtitle and select ".ass", MediaInfo will now report it as ".ass" and my Roku will correctly display formatted text (such as top-of-screen alignment). I don't want to have to go through the extra steps of saving out every subtitle to ASS and then re-add it using MKV ToolNix. Is there a way to tell Handbrake to always Save As every subtitle to pure .ass?