BareGit

ffmagick: remove builtin profiles.

Author: MetroWind <chris.corsair@gmail.com>
Date: Sun Nov 2 14:18:44 2025 -0800
Commit: d72388fcaf7edc74f15fddfed58e17a7500da458

Changes

diff --git a/ffmagick/ffmagick.py b/ffmagick/ffmagick.py
index 9bc01d3..08191bc 100644
--- a/ffmagick/ffmagick.py
+++ b/ffmagick/ffmagick.py
@@ -32,21 +32,6 @@ class Processor(Enum):
     FFMPEG = 1
     IMAGEMAGICK = 2
 
-PROFILES = [
-    {
-        "name": "half_small",
-        "desc": "Scale image to half, and compress to low-quality AVIF",
-        "processor": "IMAGEMAGICK",
-        "command": "-scale 50% -quality 70",
-        "output_ext": "avif",
-    }, {
-        "name": "intermediate",
-        "desc": "Convert video to ProRes",
-        "processor": "FFMPEG",
-        "command": "-c:v prores_ks -profile:v 3 -qscale:v 9 -vendor apl0 -pix_fmt yuv422p10le -c:a copy",
-        "output_ext": "mov",
-    }]
-
 class Profile:
     def __init__(self, profile_dict):
         self.name = profile_dict.get("name", "")