diff options
Diffstat (limited to 'ffmagick/ffmagick.toml')
| -rw-r--r-- | ffmagick/ffmagick.toml | 17 |
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] | ||
| 2 | desc = "Scale image to half, and compress to low-quality AVIF" | ||
| 3 | processor = "IMAGEMAGICK" | ||
| 4 | command = "-scale 50% -quality 70" | ||
| 5 | output_ext = "avif" | ||
| 6 | |||
| 7 | [intermediate] | ||
| 8 | desc = "Convert video to ProRes" | ||
| 9 | processor = "FFMPEG" | ||
| 10 | command = "-c:v prores_ks -profile:v 3 -qscale:v 9 -vendor apl0 -pix_fmt yuv422p10le -c:a copy" | ||
| 11 | output_ext = "mov" | ||
| 12 | |||
| 13 | [acodyssey_hdr] | ||
| 14 | desc = "Convert ACOdyssey HDR screenshot to SDR" | ||
| 15 | processor = "IMAGEMAGICK" | ||
| 16 | command = "-colorspace LAB -channel 0 -fx '.07*exp(-u*2)+u - 0.4*u^2 + 0.4 * u' -colorspace sRGB" | ||
| 17 | output_ext = "png" | ||
