Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
dvd_mkv [2018/03/11 03:39] – beandog | dvd_mkv [2021/10/18 00:59] (current) – removed beandog | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== dvd_mkv ====== | ||
- | I'd like to be able to duplicate what HandBrake does using libav directly. | ||
- | |||
- | Here's what I've got so far, to duplicate my setup: | ||
- | |||
- | * x264 slow preset, high profile, level 4.1, CRF 14 | ||
- | * 60 fps | ||
- | |||
- | < | ||
- | dvd_copy dvd.iso -c 1-1 -o - | avconv -y -i - -vcodec libx264 -acodec libfdk_aac -tune animation -ab 160k -r 60 -vsync cfr -crf 14 -x264-params ref=10: | ||
- | </ | ||
- | |||
- | Note that Handbrake will set the colorspace to BT.709 if it doesn' | ||
- | |||
- | See [[https:// | ||
- | |||
- | I can't figure out how to use my own avpreset files which is annoying, but then I thought about how it's probably a good thing to have one less file to track when making changes, so oh well. :) |