summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMetroWind <chris.corsair@gmail.com>2025-11-02 14:18:44 -0800
committerMetroWind <chris.corsair@gmail.com>2025-11-02 14:18:44 -0800
commitd72388fcaf7edc74f15fddfed58e17a7500da458 (patch)
tree1531d35e27d878635bf7a2c2577c8616d01bf4a2
parenta5a39011510852f95f01b0abfd9f0206b438ea8f (diff)
ffmagick: remove builtin profiles.
-rw-r--r--ffmagick/ffmagick.py15
1 files changed, 0 insertions, 15 deletions
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):
32 FFMPEG = 1 32 FFMPEG = 1
33 IMAGEMAGICK = 2 33 IMAGEMAGICK = 2
34 34
35PROFILES = [
36 {
37 "name": "half_small",
38 "desc": "Scale image to half, and compress to low-quality AVIF",
39 "processor": "IMAGEMAGICK",
40 "command": "-scale 50% -quality 70",
41 "output_ext": "avif",
42 }, {
43 "name": "intermediate",
44 "desc": "Convert video to ProRes",
45 "processor": "FFMPEG",
46 "command": "-c:v prores_ks -profile:v 3 -qscale:v 9 -vendor apl0 -pix_fmt yuv422p10le -c:a copy",
47 "output_ext": "mov",
48 }]
49
50class Profile: 35class Profile:
51 def __init__(self, profile_dict): 36 def __init__(self, profile_dict):
52 self.name = profile_dict.get("name", "") 37 self.name = profile_dict.get("name", "")