From: Jan Kratochvil Date: Tue, 3 Oct 2023 04:46:43 +0000 (+0800) Subject: ffmpeg: Add avi muxer X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=62f01d7b36ca621f3b9e2e01c78a64e897dbf4e8;p=openwrt-packages.git ffmpeg: Add avi muxer Otherwise one cannot produce *.avi containers needed for some H.264 camera codecs. Signed-off-by: Jan Kratochvil --- diff --git a/multimedia/ffmpeg/Config.in b/multimedia/ffmpeg/Config.in index 93cdd67cd..574ba2783 100644 --- a/multimedia/ffmpeg/Config.in +++ b/multimedia/ffmpeg/Config.in @@ -303,6 +303,9 @@ comment "Muxers" config FFMPEG_CUSTOM_MUXER_ac3 bool "AC3" +config FFMPEG_CUSTOM_MUXER_avi + bool "AVI" + config FFMPEG_CUSTOM_MUXER_h264 bool "H.264 Raw Video" depends on FFMPEG_CUSTOM_PATENTED diff --git a/multimedia/ffmpeg/Makefile b/multimedia/ffmpeg/Makefile index cd9c2fff5..af45a494e 100644 --- a/multimedia/ffmpeg/Makefile +++ b/multimedia/ffmpeg/Makefile @@ -69,6 +69,7 @@ FFMPEG_CUSTOM_DECODERS:= \ FFMPEG_CUSTOM_MUXERS:= \ ac3 \ + avi \ ffm \ h264 \ hevc \