Axiom icon indicating copy to clipboard operation
Axiom copied to clipboard

Adding colour features to video tab

Open MatthewAllan93 opened this issue 6 years ago • 5 comments

Hey, just an idea about adding colour range, colour primaries, transfer characteristics, matrix coefficients to the video tab on Axiom. I have been using the program the past few weeks and am really liking that you did an option for custom presets because I was looking for a GUI that was minimal and that would have all the features that I would like and save my options :).

MatthewAllan93 avatar Apr 27 '19 10:04 MatthewAllan93

Hi, thanks, glad is it working well for your projects. I will plan on adding those options to a new Color section in the Video tab.

The custom presets feature has been very useful, I used to have to save a script to a text file if I wanted to use it again.

MattMcManis avatar Apr 30 '19 19:04 MattMcManis

Hey I know how to add these parameters to files in FFmpeg but thanks anyway @forart :).

MatthewAllan93 avatar Apr 10 '20 08:04 MatthewAllan93

@MatthewAllan93

I've released an update with the color options:

  • primaries
  • transfer characteristics
  • colorspace
  • color range

Example script looks like:

ffmpeg -i input.mpg -c:v libx264 -pix_fmt yuv420p -color_primaries bt709 -color_trc gamma22 -colorspace ycgco -color_range pc output.mp4

It does not yet have the -x264-params version:

-x264-params "colorprim=bt709:colormatrix=bt709:transfer=bt709"


Press the arrow button in Axiom to update through PowerShell, or download from here
https://github.com/MattMcManis/Axiom/releases

Update

MattMcManis avatar May 17 '20 05:05 MattMcManis

the -x264-params version:

Do not use those. They are not to be used.

Example script looks like:

This does nothing, just tags. You need to -vf scale it.

ValZapod avatar Nov 22 '21 05:11 ValZapod