How to see what default settings are set in libx264 and libx265? I use:
-h encoder=libx265
x265 --help
but this does not give complete information.
+ Reply to Thread
Results 1 to 26 of 26
-
-
For example "tune". It is not clear what the codec is using. Profile, one is specified when encoding, and another in media info.
-
-
thanks for answers.
Can we conclude that the default is tune:none?
And yet, why does FFMPEG nowhere indicate which codec settings are used by default? -
The main problem is that it is not clear what settings the encoder uses. I heard that there is an option for libx264/265 to use exactly the settings that are set to x264/265 by default. But probably there will be a following problem, where to find the description of settings and values for x264/265.
Last question. Is it better to use libx264/265 or x264/265 with FFMPEG? -
-
I don't understand your issue. You pick a preset, and it adjusts all the settings to the correct values
for that preset. Default preset is "medium".
To see absolute defaults run x264 without any operands, do a test encode, then use Mediainfo for the details.
Here's a simple BAT fileLast edited by davexnet; 7th Sep 2023 at 18:56.
-
-
-
I give another example.
I write in the bat file
-profile main10 -level 50 -tier main
in the encoding log it is written
x265 [info]: Main profile, Level-3.1 (Main tier)
in mediainfo it is written
Main@L3.1@Main, level-idc=0, high-tier=1
my brain is breaking trying to understand this. Why can’t I just specify the parameters I need? -
-
You can use -x265-params from libx265 to enter x265 cli commands. e.g. main10@level5
x265 reference
https://x265.readthedocs.io/en/latest/cli.html
Code:-x265-params profile=main10:level-idc=5
How difficult is it to use non-included libx codecs in FFMPEG, but some third-party x264/265 builds? -
Hope you are aware that some encoder aspects can be controlled by their private settings - this is separate from regular ffmpeg settings
For x264 you are using:
Code:-x264opts
Code:-x264-params
Code:-x265opts
Code:-x265-params
-
ffmpeg can be tricky (that's why in case of doubts i recommend to ffmpeg inspect source), if you can try to use both '-x265opts' and '-x265-params' at the same time - i usually use command like this:
Code:@SET x265opts= @ffmpeg.exe -c:v libx265 -x265opts %x265opts% -x265-params %x265opts%
Similar Threads
-
PotPlayer - Where in the settings can you set a default playback resolution
By sluggerb in forum Software PlayingReplies: 8Last Post: 2nd Jun 2023, 12:49 -
ffmpeg stream mapping, codecs, and filters
By johnnyquid in forum Video ConversionReplies: 2Last Post: 1st Nov 2022, 18:53 -
Potplayer - How to set default video recording settings?
By itsZainBoi in forum Software PlayingReplies: 0Last Post: 13th Aug 2022, 16:57 -
I-o DATA GV-USB2 default settings sample
By boolian2 in forum Capturing and VCRReplies: 31Last Post: 23rd Jun 2022, 20:59 -
FFMPEG lookahead threads default to 1?
By tony95 in forum Video ConversionReplies: 2Last Post: 15th Sep 2019, 09:02