There was an error while loading. Please reload this page.
ffmpeg-mini
1 parent 8f18899 commit fe814fdCopy full SHA for fe814fd
1 file changed
ffmpeg-mini.sh
@@ -8,13 +8,22 @@ get-pkgbuild
8
cd "$BUILD_DIR"
9
10
# debloat package, remove x265 support and AV1 encoding support
11
+# remove a lot of image formats support and other stuff like opencore
12
+# a lot of these changes make ffmpeg more similar to what void and alpine do
13
+# so they should not cause issues to most applications
14
sed -i \
15
-e '/x265/d' \
16
-e '/aom/d' \
17
-e '/amf/d' \
18
-e '/opencl/d' \
19
-e '/placebo/d' \
20
-e '/librav1e/d' \
21
+ -e '/frei0r/d' \
22
+ -e '/gsm/d' \
23
+ -e '/opencore/d' \
24
+ -e '/libjxl/d' \
25
+ -e '/librsvg/d' \
26
+ -e '/libopenjpeg/d' \
27
-e '/--enable-libsvtav1/d' \
28
-e 's/--enable-vapoursynth/--enable-small/' \
29
-e 's/--enable-libglslang/--disable-vdpau/' \
0 commit comments