Selur's Little Message Board
need help how to use x264 --aq-mode 3 on ubuntu 18.04 - Printable Version

+- Selur's Little Message Board (https://forum.selur.net)
+-- Forum: Hybrid - Support (https://forum.selur.net/forum-1.html)
+--- Forum: Problems & Questions (https://forum.selur.net/forum-3.html)
+--- Thread: need help how to use x264 --aq-mode 3 on ubuntu 18.04 (/thread-2179.html)



need help how to use x264 --aq-mode 3 on ubuntu 18.04 - jono - 13.11.2021

hybrid linux 2021.07.18.1

need help about how to use aq-mode 3 x264

on quantization tab, aq mode only has 3 option.
disabled
manual
automatic

when i try importing --aq-mode 3 on misc tab. The cli info became --aq-mode 0

[Image: hybriddddd.png]

i want to use aq-mode 3.


RE: need help how to use x264 --aq-mode 3 on ubuntu 18.04 - Selur - 13.11.2021

When I start Hybrid and check "x264->Quantization->Adaptive Quantization" there are
- disabled
- manual
- automatic
- automatic2 (= aq-mode 3, available since rev 2015.06.28.1)
as options and from the looks of it there is no code in Hybrid which changes this.

----
Import works fine here.

"adaptive Quantization" itself is turned on right?

Cu Selur


RE: need help how to use x264 --aq-mode 3 on ubuntu 18.04 - Selur - 13.11.2021

Correction: I can reproduce the issue on Linux.
-> looking into it


RE: need help how to use x264 --aq-mode 3 on ubuntu 18.04 - Selur - 13.11.2021

Okay, I know where the issue is:
x264 --version reports: "x264 0.164.x" on Linux
on Windows it reports: "x264 0.164.3075 66a5bc1"
Hybrid interpretes the '.x' as 0 and the '.3075' properly as 3075.
-> I'll think about it.

As a temporary workaround you can change the toolsInfos Hybrid has.
If you check under "Config->Paths->Infos->Settings path" should show you the path where Hybrid saves it's settings on you system (usually ~/.hybrid).
In that folder there's a file named toolInfos.xml in which you should find an entry like:
<ToolInfo version="164" name="x264" path="./x264" additions="opencl;lavfFFMS"/>
If you close Hybrid and change the version to 3075 and then restart Hybrid, the option should be there.

Cu Selur


RE: need help how to use x264 --aq-mode 3 on ubuntu 18.04 - jono - 13.11.2021

(13.11.2021, 14:00)Selur Wrote: Okay, I know where the issue is:
x264 --version reports: "x264 0.164.x" on Linux
on Windows it reports: "x264 0.164.3075 66a5bc1"
Hybrid interpretes the '.x' as 0 and the '.3075' properly as 3075.
-> I'll think about it.

As a temporary workaround you can change the toolsInfos Hybrid has.
If you check under "Config->Paths->Infos->Settings path" should show you the path where Hybrid saves it's settings on you system (usually ~/.hybrid).
In that folder there's a file named toolInfos.xml in which you should find an entry like:
<ToolInfo version="164" name="x264" path="./x264" additions="opencl;lavfFFMS"/>
If you close Hybrid and change the version to 3075 and then restart Hybrid, the option should be there.

Cu Selur

Thank you very much.