vonhoro / Automate-encoding

A big script an utilities to automatize encoding
MIT License
0 stars 1 forks source link

[Bugfix] p2p templated settings #15

Closed Motophan closed 3 years ago

Motophan commented 3 years ago

Always, 100% of the time, we will use these settings no matter what. There is zero variation whatsoever w/ these.

The only ones u can mechanically change is min keyint, so grep mediainfo and >23 frame rate use 24, >29 frame rate use 30, and variable frame rate use 30. All others should be hardcoded

--level 4.1 --b-adapt 2 --min-keyint [should typically be the frame rate of your video, e.g. if you were encoding 23.976fps content, then you use 24. This is setting the minimum distance between I-frames.] --vbv-bufsize 78125 --vbv-maxrate 62500 --rc-lookahead 250 --me tesa --direct auto --subme 11 --trellis 2 --no-dct-decimate --no-fast-pskip --ref [4/9/12/16] # 1080p=4, 720p=9, 576p=12, 480p=16

It did not do this on my machine. Running w/ current build gave x264-setting.txt

Motophan commented 3 years ago

image

wrong p2p mandated settings

vonhoro commented 3 years ago

Fixed