summaryrefslogtreecommitdiff
path: root/ffmagick/ffmagick.toml
diff options
context:
space:
mode:
Diffstat (limited to 'ffmagick/ffmagick.toml')
-rw-r--r--ffmagick/ffmagick.toml17
1 files changed, 17 insertions, 0 deletions
diff --git a/ffmagick/ffmagick.toml b/ffmagick/ffmagick.toml
new file mode 100644
index 0000000..4f8b1da
--- /dev/null
+++ b/ffmagick/ffmagick.toml
@@ -0,0 +1,17 @@
1[half_small]
2desc = "Scale image to half, and compress to low-quality AVIF"
3processor = "IMAGEMAGICK"
4command = "-scale 50% -quality 70"
5output_ext = "avif"
6
7[intermediate]
8desc = "Convert video to ProRes"
9processor = "FFMPEG"
10command = "-c:v prores_ks -profile:v 3 -qscale:v 9 -vendor apl0 -pix_fmt yuv422p10le -c:a copy"
11output_ext = "mov"
12
13[acodyssey_hdr]
14desc = "Convert ACOdyssey HDR screenshot to SDR"
15processor = "IMAGEMAGICK"
16command = "-colorspace LAB -channel 0 -fx '.07*exp(-u*2)+u - 0.4*u^2 + 0.4 * u' -colorspace sRGB"
17output_ext = "png"