Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
handbrake_and_x264 [2018/04/07 02:30] beandoghandbrake_and_x264 [2023/04/09 18:04] (current) – removed beandog
Line 1: Line 1:
-====== HandBrake and x264 ====== 
  
-I'm trying to document a number of changes in encoding which I won't go into here, but I started with the base idea of I want to be able to duplicate HandBrake and x264's encoding settings. 
- 
-To get the x264 encoding settings, I use [[mediainfo]], and process it with a script I call [[x264_info]]. 
- 
-There's a difference between HandBrake's and x264's default settings. Based on the x264 defaults, here's the updates to the HandBrake ones. 
- 
-Do a simple x264 encode: 
- 
-<code> 
-x264 --muxer mkv --frames 30 -o x264.mkv input.mpg 
-</code> 
- 
-And a simple HandBrake encode: 
- 
-<code> 
-HandBrakeCLI -e x264 -a none -s none --stop-at frame:30 -o handbrake.mkv input.mpg 
-</code>