Log in

View Full Version : FFmpeg x265 Noob Question


CarryTrainer.Editor
30th November 2018, 20:54
Does the standard Windows FFmpeg package allow you to use all the detailed render settings with x265? The reason I ask is because I can use the speed presets, tune and CRF settings without issue... but other finer settings give me unrecognized command type errors. For example:

--rskip
--no-sao
--dynamic-refine -refine-intra 4

Thanks in advance!

FYI: I'm running Windows 10, 64 bit if that's helpful.

sneaker_ger
30th November 2018, 21:08
Such "detailed" parameters can be invoked via ffmpeg as well, just the syntax is a bit different.
Example:
-x265-params no-sao=1:bframes=6

https://trac.ffmpeg.org/wiki/Encode/H.265#PassingOptions

CarryTrainer.Editor
30th November 2018, 21:21
Ahh, passing options... Thank you @sneaker_ger!

That gives me something to play around with.