Search found 5726 matches

by JohnAStebbins
Wed Sep 14, 2022 2:36 pm
Forum: *nix
Topic: what is an .m4v file and why does handbrake ALWAYS want to render videos in this format?
Replies: 6
Views: 926

Re: what is an .m4v file and why does handbrake ALWAYS want to render videos in this format?

iPod, first AppleTV, QuickTime Player 7, old versions of iTunes. .m4v was required to enable ac-3 audio and chapters. In addition, the vast majority of players that are not brain dead like those mentioned above are smart enough to recognize the file type based on it's content rather than it's filen...
by JohnAStebbins
Thu Sep 08, 2022 5:56 pm
Forum: Windows
Topic: How to save Video Conversion half the way to continue the Job work later ?
Replies: 4
Views: 561

Re: How to save Video Conversion half the way to continue the Job work later ?

Also should the Software remain open if i close the Software and again open it ? even then it does not start from where I left last. When I close the Software and again open it it does give a pop up asking do you want to recover your earlier job but that in no ways starts from where I left. So I do...
by JohnAStebbins
Wed Sep 07, 2022 5:49 pm
Forum: Windows
Topic: DVD quality looks horrible after putting through software.
Replies: 10
Views: 904

Re: DVD quality looks horrible after putting through software.

The Linux version of MakeMKV is perpetually in Beta and has a free registration key.
https://forum.makemkv.com/forum/viewtop ... f=5&t=1053

I wonder if it runs in WSL?
by JohnAStebbins
Fri Sep 02, 2022 9:09 pm
Forum: General Questions
Topic: Strange 'Overlay' appearing
Replies: 7
Views: 649

Re: Strange 'Overlay' appearing

You might want to disable "Foreign audio search". It automatically adds any subtitle track that looks like it may have subtitles for a sequence with foreign audio. In this case, it interpreted the forced subtitles in a track (which are probably the watermark you are seeing) as potential fo...
by JohnAStebbins
Sun Aug 07, 2022 2:05 pm
Forum: General Questions
Topic: Handbrake upsizing video bitrate
Replies: 3
Views: 1171

Re: Handbrake upsizing video bitrate

I'm not even sure why Handbrake is increasing the bitrate since I doubt it's increasing the quality You assume correctly that HandBrake can't increase the quality. When a video is recompressed to a "higher quality" than the original, all you are doing is faithfully preserving all the comp...
by JohnAStebbins
Thu Jun 30, 2022 3:19 am
Forum: Windows
Topic: Can "Align A/V Start" option cause desync?
Replies: 3
Views: 793

Re: Can "Align A/V Start" option cause desync?

Is it possible even when I cut a clip from a middle of a longer movie? Both video and audio are well underway so start time should be irrelevant. In this scenario is is almost guaranteed that the start times will not align. Audio frame and video frames have differing durations. So if you start an a...
by JohnAStebbins
Sun Jun 26, 2022 12:32 am
Forum: General Questions
Topic: MKV from HandBrake is larger and has less readable metadata.
Replies: 14
Views: 2164

Re: MKV from HandBrake is larger and has less readable metadata.

I did do a quick check this time to see how much trouble it would be. ffmpeg supports reading compressed PGS. But it does not support writing compressed PGS. So I'll have to patch ffmpeg to add this feature. Probably a day's work at worst. Just have to set aside my work on OctoPrint and OctoDash for...
by JohnAStebbins
Sun Jun 26, 2022 12:26 am
Forum: Windows
Topic: Can "Align A/V Start" option cause desync?
Replies: 3
Views: 793

Re: Can "Align A/V Start" option cause desync?

In media files, it is possible for the first audio timestamp and the first video timestamp to be different, e.g. the audio starts at time X and the video starts at time Y. Align A/V start shortens or extends the duration of the first video frame to force X == Y. If the original difference in start t...
by JohnAStebbins
Sat Jun 25, 2022 11:22 pm
Forum: Mac
Topic: Detelecine original 24p content that is 29.97 back to 24p
Replies: 7
Views: 1306

Re: Detelecine original 24p content that is 29.97 back to 24p

HandBrake has a convenient "Interlace Detection" filter that may help in this scenario. When this filter is enabled, it looks for combing artefacts in the incoming frames and marks the combed frames. The information about which frames have combing is fed through to the "Deinterlace&qu...
by JohnAStebbins
Thu Jun 23, 2022 7:19 pm
Forum: General Questions
Topic: MKV from HandBrake is larger and has less readable metadata.
Replies: 14
Views: 2164

Re: MKV from HandBrake is larger and has less readable metadata.

The PGS track is compressed in the zlib format in mkvmerge file, but uncompressed in the HandBrake one. That's interesting. I didn't know that was an option in mkv. It certainly would save a lot of space. Will have to look into adding support for that since zlib is already one of our dependencies. ...
by JohnAStebbins
Thu Jun 23, 2022 3:28 pm
Forum: General Questions
Topic: MKV from HandBrake is larger and has less readable metadata.
Replies: 14
Views: 2164

Re: MKV from HandBrake is larger and has less readable metadata.

But why isn’t there info about bitrate of video and audio streams (in MKV from HandBrake), please? Not sure really. The matroska specification has no track elements for bitrate, but it can be calculated from duration and size of the data in the track. Matroska does have "Technical Information ...
by JohnAStebbins
Thu Jun 23, 2022 3:14 pm
Forum: Mac
Topic: Detelecine original 24p content that is 29.97 back to 24p
Replies: 7
Views: 1306

Re: Detelecine original 24p content that is 29.97 back to 24p

Unfortunately, HandBrake's detelecine filter doesn't have any logging that could tell us more about what might be happening. I really should add a verbose logging option so we can see if there are any breaks in the 2-3 pulldown pattern. But that looks like what is happening. If you are really intere...
by JohnAStebbins
Thu Jun 23, 2022 2:47 pm
Forum: General Questions
Topic: Keep output file exactly the same while only adding burn-in of forced subs
Replies: 4
Views: 549

Re: Keep output file exactly the same while only adding burn-in of forced subs

Is there a reason you are choosing to encode to MPEG-2? If you don't require MPEG-2 for some player compatibility reason, you should use a more modern codec. The MPEG-2 codec is old technology (nearly 30 years old) and the encoder implementation (i.e. the software implementing the spec) is much less...
by JohnAStebbins
Thu Jun 23, 2022 2:38 pm
Forum: General Questions
Topic: MKV from HandBrake is larger and has less readable metadata.
Replies: 14
Views: 2164

Re: MKV from HandBrake is larger and has less readable metadata.

The PGS track is compressed in the zlib format in mkvmerge file, but uncompressed in the HandBrake one. That's interesting. I didn't know that was an option in mkv. It certainly would save a lot of space. Will have to look into adding support for that since zlib is already one of our dependencies. ...
by JohnAStebbins
Thu Jun 16, 2022 2:00 pm
Forum: Windows
Topic: Why does Handbrake transcode to weird dimensions?
Replies: 4
Views: 394

Re: Why does Handbrake transcode to weird dimensions?

Is there a feasible reason why the default 1080p preset would have automatic cropping set 268 to the right? This is my fifth time using the program, and it wasn't there previously. Because commercial formats have limited allowable resolutions. So when the video is mastered, they add black bars to m...
by JohnAStebbins
Sun Jun 12, 2022 6:52 pm
Forum: Windows
Topic: How anamorphic works?
Replies: 13
Views: 1855

Re: How anamorphic works?

Ok i give up. I think i’ll need an activity log here even for asking if truehd atmos its better than a 64kbps mono mp3 or for just to say “hello”... Yes. They are easy to generate, give details most people don't know are needed and prevent miscommunication between people that often don't speak the ...
by JohnAStebbins
Sat Jun 11, 2022 2:29 pm
Forum: Windows
Topic: How anamorphic works?
Replies: 13
Views: 1855

Re: How anamorphic works?

JohnAStebbins wrote: Fri Jun 10, 2022 6:59 pm We really need to see an activity log to understand what you are doing.
Damian83 wrote: other than more storage space, are the files ive made before, of better quality?
No way to know from the information you've provided. :mrgreen:
by JohnAStebbins
Fri Jun 10, 2022 6:59 pm
Forum: Windows
Topic: How anamorphic works?
Replies: 13
Views: 1855

Re: How anamorphic works?

We really need to see an activity log to understand what you are doing. But the "auto" anamorphic mode keeps as many pixels as possible of the original source while adhering to any other limits that other settings may impose (like the "Resolution Limit" setting). So, for example,...
by JohnAStebbins
Wed Jun 08, 2022 8:32 pm
Forum: Windows
Topic: Can no longer encode any files without errors
Replies: 4
Views: 881

Re: Can no longer encode any files without errors

Try a software encoder rather than NVEnc hardware encoder.
by JohnAStebbins
Sat Jun 04, 2022 2:31 pm
Forum: *nix
Topic: Handbrake Doesn't Inhibit Sleep
Replies: 1
Views: 751

Re: Handbrake Doesn't Inhibit Sleep

Are you using the flatpak we publish? Do you use gnome or kde desktop?
by JohnAStebbins
Thu May 26, 2022 1:45 pm
Forum: Windows
Topic: Constant Quality MAX Birate
Replies: 1
Views: 478

Re: Constant Quality MAX Birate

There are a couple of ways. Use encoder "levels". Levels are designed to tune encoder settings to match the capabilities of a player or playback environment (i.e. streaming). Levels implicitly set "VBV" settings that limit bitrate. Information about levels https://help.encoding.c...
by JohnAStebbins
Sat May 21, 2022 6:41 pm
Forum: Tiki Bar
Topic: Where did HandBrake get its name from?
Replies: 2
Views: 18457

Re: Where did HandBrake get its name from?

Devil's Handbrake
  • 1/3 shot banana liqueur
  • 1/3 shot mango liqueur
  • 1/3 shot cherry brandy
by JohnAStebbins
Wed May 04, 2022 2:51 pm
Forum: General Questions
Topic: Can Handbrake be made to show min&max bitrate in the log?
Replies: 4
Views: 709

Re: Can Handbrake be made to show min&max bitrate in the log?

If you are worried about spikes causing playback problems, then you should be using encoder "level" or VBV settings to limit such spikes. For example the level used in the activity log you provided (3.0) limits peak bitrate to 10Mbps. As far as I know, this information is not available fro...
by JohnAStebbins
Tue May 03, 2022 1:50 pm
Forum: General Questions
Topic: Why does the handbrake log show VFR for DVDs?
Replies: 5
Views: 892

Re: Why does the handbrake log show VFR for DVDs?

Okay.. I will stick to doing "Same as Source", CFR, and checking the logs to make sure no duplicates or frames were removed or added, etc. I saw some people in another forum (and maybe another program other than Handbrake) talking about doubling the frame rate if you are deinterlacing... ...