As the title says - What's the difference between libavcodec-ffmpeg-extra56 and libavcodec-ffmpeg56? Which should I install?
I'm using kdenlive but auditioning some other non-linear video editors. Does it matter which of these packages is installed, presumably one is for ffmpeg and one is for the Ubuntu bawdlerised version (or is it avconv now?)?
Advice please?
Edit, from packages.ubuntu.com:
Package libavcodec-ffmpeg-extra56
xenial (16.04LTS) (libs): FFmpeg library with **additional** de/encoders for audio/video codecs [universe] 7:2.8.8-0ubuntu0.16.04.1 [security]: amd64 i386 7:2.8.6-1ubuntu2 [ports]: arm64 armhf powerpc ppc64el s390x
Package libavcodec-ffmpeg56
xenial (16.04LTS) (libs): FFmpeg library with de/encoders for audio/video codecs - runtime files [universe] 7:2.8.8-0ubuntu0.16.04.1 [security]: amd64 i386 7:2.8.6-1ubuntu2 [ports]: arm64 armhf powerpc ppc64el s390x
If you look at the files (plain, extra) the only difference appears to be the file in /usr/share/lintian/overrides/
. The .so
files are identically named and versioned.
libavcodec-ffmpeg.so.56.60.100
(for me on xenial), presumably the encoders you mention are somehow "housed" in the only differing (non meta-data) file the one in thelintian/overrides
folder? Do you have a citation for this info? – pbhj Nov 10 '16 at 22:02ffmpeg -codecs > default.txt
(with libavcodec-ffmpeg56),ffmpeg -codecs > extra.txt
(with libavcodec-ffmpeg-extra56),diff default.txt extra.txt
. – llogan Nov 10 '16 at 22:46