How do I get rid of ffmpeg `WARNING: library configuration mismatch` message?












11















I have been using avconv without issue, however since upgrading to 15.10 and switching to ffmpeg, I have a library configuration mismatch warning in my script output.



This is my command to rip CDs for my iPod and Fiio X5 Mk2.



#!/bin/bash

cdparanoia -Bv
for f in ./*.wav; do avconv -i "$f" -acodec alac "${f%.*}.m4a"; done
eject
ls


When I replaced avconv with ffmpeg I now see WARNING: library configuration mismatch in the middle of the output:



ffmpeg version 2.7.3-0ubuntu0.15.10.1 Copyright (c) 2000-2015 the FFmpeg developers
built with gcc 5.2.1 (Ubuntu 5.2.1-22ubuntu2) 20151010
configuration: --prefix=/usr --extra-version=0ubuntu0.15.10.1 --build-suffix=-ffmpeg --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --enable-shared --disable-stripping --enable-avresample --enable-avisynth --enable-frei0r --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopenjpeg --enable-openal --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libshine --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libxvid --enable-libzvbi --enable-opengl --enable-x11grab --enable-libdc1394 --enable-libiec61883 --enable-libzmq --enable-libssh --enable-libsoxr --enable-libx264 --enable-libopencv --enable-libx265
WARNING: library configuration mismatch
avcodec configuration: --prefix=/usr --extra-version=0ubuntu0.15.10.1 --build-suffix=-ffmpeg --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --enable-shared --disable-stripping --enable-avresample --enable-avisynth --enable-frei0r --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopenjpeg --enable-openal --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libshine --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libxvid --enable-libzvbi --enable-opengl --enable-x11grab --enable-libdc1394 --enable-libiec61883 --enable-libzmq --enable-libssh --enable-libsoxr --enable-libx264 --enable-libopencv --enable-libx265 --enable-version3 --disable-doc --disable-programs --disable-avdevice --disable-avfilter --disable-avformat --disable-avresample --disable-postproc --disable-swscale --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libvo_aacenc --enable-libvo_amrwbenc
libavutil 54. 27.100 / 54. 27.100
libavcodec 56. 41.100 / 56. 41.100
libavformat 56. 36.100 / 56. 36.100
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 16.101 / 5. 16.101
libavresample 2. 1. 0 / 2. 1. 0
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 2.100 / 1. 2.100
libpostproc 53. 3.100 / 53. 3.100
Guessed Channel Layout for Input Stream #0.0 : stereo
Input #0, wav, from './track01.cdda.wav':
Duration: 00:02:36.20, bitrate: 1411 kb/s
Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, 2 channels, s16, 1411 kb/s
Output #0, ipod, to './track01.cdda.m4a':
Metadata:
encoder : Lavf56.36.100
Stream #0:0: Audio: alac (alac / 0x63616C61), 44100 Hz, stereo, s16p, 128 kb/s
Metadata:
encoder : Lavc56.41.100 alac
Stream mapping:
Stream #0:0 -> #0:0 (pcm_s16le (native) -> alac (native))
Press [q] to stop, [?] for help
size= 16226kB time=00:02:36.22 bitrate= 850.9kbits/s
video:0kB audio:16219kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.046357%


Checking other sites suggests I have installed ffmpeg on an early version of Ubuntu where avconv was the default, but this wasn't the case here.



Can anyone suggest a resolution for me?










share|improve this question

























  • Check askubuntu.com/questions/373322/…

    – Rmano
    Dec 26 '15 at 13:29






  • 2





    The library mismatch warning is due to the use of the 'extra' packages/packaging. It's benign & can be ignored

    – doug
    Dec 26 '15 at 14:30











  • Is there any way to hide the terminal spam without removing the libavcodec-ffmpeg-extra56 package?

    – Hitechcomputergeek
    May 16 '16 at 23:05






  • 1





    I found a way; although this doesn't answer the original question, which uses a bash script, I put for i in ffmpeg ffplay ffprobe ffserver; do alias $i="$i -hide_banner"; done in my .bashrc file.

    – Hitechcomputergeek
    May 16 '16 at 23:43











  • Launchpad bug for this warning message: bugs.launchpad.net/ubuntu/+source/ffmpeg-extra/+bug/730159

    – Cas
    Mar 28 '17 at 16:26
















11















I have been using avconv without issue, however since upgrading to 15.10 and switching to ffmpeg, I have a library configuration mismatch warning in my script output.



This is my command to rip CDs for my iPod and Fiio X5 Mk2.



#!/bin/bash

cdparanoia -Bv
for f in ./*.wav; do avconv -i "$f" -acodec alac "${f%.*}.m4a"; done
eject
ls


When I replaced avconv with ffmpeg I now see WARNING: library configuration mismatch in the middle of the output:



ffmpeg version 2.7.3-0ubuntu0.15.10.1 Copyright (c) 2000-2015 the FFmpeg developers
built with gcc 5.2.1 (Ubuntu 5.2.1-22ubuntu2) 20151010
configuration: --prefix=/usr --extra-version=0ubuntu0.15.10.1 --build-suffix=-ffmpeg --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --enable-shared --disable-stripping --enable-avresample --enable-avisynth --enable-frei0r --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopenjpeg --enable-openal --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libshine --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libxvid --enable-libzvbi --enable-opengl --enable-x11grab --enable-libdc1394 --enable-libiec61883 --enable-libzmq --enable-libssh --enable-libsoxr --enable-libx264 --enable-libopencv --enable-libx265
WARNING: library configuration mismatch
avcodec configuration: --prefix=/usr --extra-version=0ubuntu0.15.10.1 --build-suffix=-ffmpeg --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --enable-shared --disable-stripping --enable-avresample --enable-avisynth --enable-frei0r --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopenjpeg --enable-openal --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libshine --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libxvid --enable-libzvbi --enable-opengl --enable-x11grab --enable-libdc1394 --enable-libiec61883 --enable-libzmq --enable-libssh --enable-libsoxr --enable-libx264 --enable-libopencv --enable-libx265 --enable-version3 --disable-doc --disable-programs --disable-avdevice --disable-avfilter --disable-avformat --disable-avresample --disable-postproc --disable-swscale --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libvo_aacenc --enable-libvo_amrwbenc
libavutil 54. 27.100 / 54. 27.100
libavcodec 56. 41.100 / 56. 41.100
libavformat 56. 36.100 / 56. 36.100
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 16.101 / 5. 16.101
libavresample 2. 1. 0 / 2. 1. 0
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 2.100 / 1. 2.100
libpostproc 53. 3.100 / 53. 3.100
Guessed Channel Layout for Input Stream #0.0 : stereo
Input #0, wav, from './track01.cdda.wav':
Duration: 00:02:36.20, bitrate: 1411 kb/s
Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, 2 channels, s16, 1411 kb/s
Output #0, ipod, to './track01.cdda.m4a':
Metadata:
encoder : Lavf56.36.100
Stream #0:0: Audio: alac (alac / 0x63616C61), 44100 Hz, stereo, s16p, 128 kb/s
Metadata:
encoder : Lavc56.41.100 alac
Stream mapping:
Stream #0:0 -> #0:0 (pcm_s16le (native) -> alac (native))
Press [q] to stop, [?] for help
size= 16226kB time=00:02:36.22 bitrate= 850.9kbits/s
video:0kB audio:16219kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.046357%


Checking other sites suggests I have installed ffmpeg on an early version of Ubuntu where avconv was the default, but this wasn't the case here.



Can anyone suggest a resolution for me?










share|improve this question

























  • Check askubuntu.com/questions/373322/…

    – Rmano
    Dec 26 '15 at 13:29






  • 2





    The library mismatch warning is due to the use of the 'extra' packages/packaging. It's benign & can be ignored

    – doug
    Dec 26 '15 at 14:30











  • Is there any way to hide the terminal spam without removing the libavcodec-ffmpeg-extra56 package?

    – Hitechcomputergeek
    May 16 '16 at 23:05






  • 1





    I found a way; although this doesn't answer the original question, which uses a bash script, I put for i in ffmpeg ffplay ffprobe ffserver; do alias $i="$i -hide_banner"; done in my .bashrc file.

    – Hitechcomputergeek
    May 16 '16 at 23:43











  • Launchpad bug for this warning message: bugs.launchpad.net/ubuntu/+source/ffmpeg-extra/+bug/730159

    – Cas
    Mar 28 '17 at 16:26














11












11








11


4






I have been using avconv without issue, however since upgrading to 15.10 and switching to ffmpeg, I have a library configuration mismatch warning in my script output.



This is my command to rip CDs for my iPod and Fiio X5 Mk2.



#!/bin/bash

cdparanoia -Bv
for f in ./*.wav; do avconv -i "$f" -acodec alac "${f%.*}.m4a"; done
eject
ls


When I replaced avconv with ffmpeg I now see WARNING: library configuration mismatch in the middle of the output:



ffmpeg version 2.7.3-0ubuntu0.15.10.1 Copyright (c) 2000-2015 the FFmpeg developers
built with gcc 5.2.1 (Ubuntu 5.2.1-22ubuntu2) 20151010
configuration: --prefix=/usr --extra-version=0ubuntu0.15.10.1 --build-suffix=-ffmpeg --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --enable-shared --disable-stripping --enable-avresample --enable-avisynth --enable-frei0r --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopenjpeg --enable-openal --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libshine --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libxvid --enable-libzvbi --enable-opengl --enable-x11grab --enable-libdc1394 --enable-libiec61883 --enable-libzmq --enable-libssh --enable-libsoxr --enable-libx264 --enable-libopencv --enable-libx265
WARNING: library configuration mismatch
avcodec configuration: --prefix=/usr --extra-version=0ubuntu0.15.10.1 --build-suffix=-ffmpeg --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --enable-shared --disable-stripping --enable-avresample --enable-avisynth --enable-frei0r --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopenjpeg --enable-openal --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libshine --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libxvid --enable-libzvbi --enable-opengl --enable-x11grab --enable-libdc1394 --enable-libiec61883 --enable-libzmq --enable-libssh --enable-libsoxr --enable-libx264 --enable-libopencv --enable-libx265 --enable-version3 --disable-doc --disable-programs --disable-avdevice --disable-avfilter --disable-avformat --disable-avresample --disable-postproc --disable-swscale --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libvo_aacenc --enable-libvo_amrwbenc
libavutil 54. 27.100 / 54. 27.100
libavcodec 56. 41.100 / 56. 41.100
libavformat 56. 36.100 / 56. 36.100
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 16.101 / 5. 16.101
libavresample 2. 1. 0 / 2. 1. 0
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 2.100 / 1. 2.100
libpostproc 53. 3.100 / 53. 3.100
Guessed Channel Layout for Input Stream #0.0 : stereo
Input #0, wav, from './track01.cdda.wav':
Duration: 00:02:36.20, bitrate: 1411 kb/s
Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, 2 channels, s16, 1411 kb/s
Output #0, ipod, to './track01.cdda.m4a':
Metadata:
encoder : Lavf56.36.100
Stream #0:0: Audio: alac (alac / 0x63616C61), 44100 Hz, stereo, s16p, 128 kb/s
Metadata:
encoder : Lavc56.41.100 alac
Stream mapping:
Stream #0:0 -> #0:0 (pcm_s16le (native) -> alac (native))
Press [q] to stop, [?] for help
size= 16226kB time=00:02:36.22 bitrate= 850.9kbits/s
video:0kB audio:16219kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.046357%


Checking other sites suggests I have installed ffmpeg on an early version of Ubuntu where avconv was the default, but this wasn't the case here.



Can anyone suggest a resolution for me?










share|improve this question
















I have been using avconv without issue, however since upgrading to 15.10 and switching to ffmpeg, I have a library configuration mismatch warning in my script output.



This is my command to rip CDs for my iPod and Fiio X5 Mk2.



#!/bin/bash

cdparanoia -Bv
for f in ./*.wav; do avconv -i "$f" -acodec alac "${f%.*}.m4a"; done
eject
ls


When I replaced avconv with ffmpeg I now see WARNING: library configuration mismatch in the middle of the output:



ffmpeg version 2.7.3-0ubuntu0.15.10.1 Copyright (c) 2000-2015 the FFmpeg developers
built with gcc 5.2.1 (Ubuntu 5.2.1-22ubuntu2) 20151010
configuration: --prefix=/usr --extra-version=0ubuntu0.15.10.1 --build-suffix=-ffmpeg --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --enable-shared --disable-stripping --enable-avresample --enable-avisynth --enable-frei0r --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopenjpeg --enable-openal --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libshine --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libxvid --enable-libzvbi --enable-opengl --enable-x11grab --enable-libdc1394 --enable-libiec61883 --enable-libzmq --enable-libssh --enable-libsoxr --enable-libx264 --enable-libopencv --enable-libx265
WARNING: library configuration mismatch
avcodec configuration: --prefix=/usr --extra-version=0ubuntu0.15.10.1 --build-suffix=-ffmpeg --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --enable-shared --disable-stripping --enable-avresample --enable-avisynth --enable-frei0r --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopenjpeg --enable-openal --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libshine --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libxvid --enable-libzvbi --enable-opengl --enable-x11grab --enable-libdc1394 --enable-libiec61883 --enable-libzmq --enable-libssh --enable-libsoxr --enable-libx264 --enable-libopencv --enable-libx265 --enable-version3 --disable-doc --disable-programs --disable-avdevice --disable-avfilter --disable-avformat --disable-avresample --disable-postproc --disable-swscale --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libvo_aacenc --enable-libvo_amrwbenc
libavutil 54. 27.100 / 54. 27.100
libavcodec 56. 41.100 / 56. 41.100
libavformat 56. 36.100 / 56. 36.100
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 16.101 / 5. 16.101
libavresample 2. 1. 0 / 2. 1. 0
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 2.100 / 1. 2.100
libpostproc 53. 3.100 / 53. 3.100
Guessed Channel Layout for Input Stream #0.0 : stereo
Input #0, wav, from './track01.cdda.wav':
Duration: 00:02:36.20, bitrate: 1411 kb/s
Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, 2 channels, s16, 1411 kb/s
Output #0, ipod, to './track01.cdda.m4a':
Metadata:
encoder : Lavf56.36.100
Stream #0:0: Audio: alac (alac / 0x63616C61), 44100 Hz, stereo, s16p, 128 kb/s
Metadata:
encoder : Lavc56.41.100 alac
Stream mapping:
Stream #0:0 -> #0:0 (pcm_s16le (native) -> alac (native))
Press [q] to stop, [?] for help
size= 16226kB time=00:02:36.22 bitrate= 850.9kbits/s
video:0kB audio:16219kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.046357%


Checking other sites suggests I have installed ffmpeg on an early version of Ubuntu where avconv was the default, but this wasn't the case here.



Can anyone suggest a resolution for me?







15.10 ffmpeg avconv






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 28 '17 at 16:37









Cas

5,34735196




5,34735196










asked Dec 26 '15 at 13:25









markrichmarkrich

63821024




63821024













  • Check askubuntu.com/questions/373322/…

    – Rmano
    Dec 26 '15 at 13:29






  • 2





    The library mismatch warning is due to the use of the 'extra' packages/packaging. It's benign & can be ignored

    – doug
    Dec 26 '15 at 14:30











  • Is there any way to hide the terminal spam without removing the libavcodec-ffmpeg-extra56 package?

    – Hitechcomputergeek
    May 16 '16 at 23:05






  • 1





    I found a way; although this doesn't answer the original question, which uses a bash script, I put for i in ffmpeg ffplay ffprobe ffserver; do alias $i="$i -hide_banner"; done in my .bashrc file.

    – Hitechcomputergeek
    May 16 '16 at 23:43











  • Launchpad bug for this warning message: bugs.launchpad.net/ubuntu/+source/ffmpeg-extra/+bug/730159

    – Cas
    Mar 28 '17 at 16:26



















  • Check askubuntu.com/questions/373322/…

    – Rmano
    Dec 26 '15 at 13:29






  • 2





    The library mismatch warning is due to the use of the 'extra' packages/packaging. It's benign & can be ignored

    – doug
    Dec 26 '15 at 14:30











  • Is there any way to hide the terminal spam without removing the libavcodec-ffmpeg-extra56 package?

    – Hitechcomputergeek
    May 16 '16 at 23:05






  • 1





    I found a way; although this doesn't answer the original question, which uses a bash script, I put for i in ffmpeg ffplay ffprobe ffserver; do alias $i="$i -hide_banner"; done in my .bashrc file.

    – Hitechcomputergeek
    May 16 '16 at 23:43











  • Launchpad bug for this warning message: bugs.launchpad.net/ubuntu/+source/ffmpeg-extra/+bug/730159

    – Cas
    Mar 28 '17 at 16:26

















Check askubuntu.com/questions/373322/…

– Rmano
Dec 26 '15 at 13:29





Check askubuntu.com/questions/373322/…

– Rmano
Dec 26 '15 at 13:29




2




2





The library mismatch warning is due to the use of the 'extra' packages/packaging. It's benign & can be ignored

– doug
Dec 26 '15 at 14:30





The library mismatch warning is due to the use of the 'extra' packages/packaging. It's benign & can be ignored

– doug
Dec 26 '15 at 14:30













Is there any way to hide the terminal spam without removing the libavcodec-ffmpeg-extra56 package?

– Hitechcomputergeek
May 16 '16 at 23:05





Is there any way to hide the terminal spam without removing the libavcodec-ffmpeg-extra56 package?

– Hitechcomputergeek
May 16 '16 at 23:05




1




1





I found a way; although this doesn't answer the original question, which uses a bash script, I put for i in ffmpeg ffplay ffprobe ffserver; do alias $i="$i -hide_banner"; done in my .bashrc file.

– Hitechcomputergeek
May 16 '16 at 23:43





I found a way; although this doesn't answer the original question, which uses a bash script, I put for i in ffmpeg ffplay ffprobe ffserver; do alias $i="$i -hide_banner"; done in my .bashrc file.

– Hitechcomputergeek
May 16 '16 at 23:43













Launchpad bug for this warning message: bugs.launchpad.net/ubuntu/+source/ffmpeg-extra/+bug/730159

– Cas
Mar 28 '17 at 16:26





Launchpad bug for this warning message: bugs.launchpad.net/ubuntu/+source/ffmpeg-extra/+bug/730159

– Cas
Mar 28 '17 at 16:26










2 Answers
2






active

oldest

votes


















15














To fix this remove the following package:



sudo apt remove libavcodec-ffmpeg-extra56


Apt will remove the package and replace it with libavcodec-ffmpeg56 resulting in ffmpeg no longer output a warning message.



For details on libavcodec-ffmpeg-extra56 package and why it is likely no needed, see: https://askubuntu.com/a/847566/8570






share|improve this answer





















  • 2





    it resolved same issue in ubuntu 16.04 as well.

    – Ejaz
    Sep 24 '16 at 3:52






  • 2





    In ubuntu 17.10, this has become libavcodec-extra57 / libavcodec-extra. Amazing that this is still a thing.

    – Dav Clark
    Dec 12 '17 at 23:53











  • At the risk of upsetting the Ubuntu Police: This also worked on Mint 18. (Great answer, BTW—The quick fix, the explanation, and the reference link. Thank you.)

    – Michael Scheper
    Aug 19 '18 at 15:41













  • The comment of @DavClark is still valid for Ubuntu 18.04

    – elvis.dukaj
    Oct 27 '18 at 10:15





















1














On Ubuntu 18.04:



sudo apt remove libavcodec-extra57





share|improve this answer

























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "89"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f713624%2fhow-do-i-get-rid-of-ffmpeg-warning-library-configuration-mismatch-message%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    15














    To fix this remove the following package:



    sudo apt remove libavcodec-ffmpeg-extra56


    Apt will remove the package and replace it with libavcodec-ffmpeg56 resulting in ffmpeg no longer output a warning message.



    For details on libavcodec-ffmpeg-extra56 package and why it is likely no needed, see: https://askubuntu.com/a/847566/8570






    share|improve this answer





















    • 2





      it resolved same issue in ubuntu 16.04 as well.

      – Ejaz
      Sep 24 '16 at 3:52






    • 2





      In ubuntu 17.10, this has become libavcodec-extra57 / libavcodec-extra. Amazing that this is still a thing.

      – Dav Clark
      Dec 12 '17 at 23:53











    • At the risk of upsetting the Ubuntu Police: This also worked on Mint 18. (Great answer, BTW—The quick fix, the explanation, and the reference link. Thank you.)

      – Michael Scheper
      Aug 19 '18 at 15:41













    • The comment of @DavClark is still valid for Ubuntu 18.04

      – elvis.dukaj
      Oct 27 '18 at 10:15


















    15














    To fix this remove the following package:



    sudo apt remove libavcodec-ffmpeg-extra56


    Apt will remove the package and replace it with libavcodec-ffmpeg56 resulting in ffmpeg no longer output a warning message.



    For details on libavcodec-ffmpeg-extra56 package and why it is likely no needed, see: https://askubuntu.com/a/847566/8570






    share|improve this answer





















    • 2





      it resolved same issue in ubuntu 16.04 as well.

      – Ejaz
      Sep 24 '16 at 3:52






    • 2





      In ubuntu 17.10, this has become libavcodec-extra57 / libavcodec-extra. Amazing that this is still a thing.

      – Dav Clark
      Dec 12 '17 at 23:53











    • At the risk of upsetting the Ubuntu Police: This also worked on Mint 18. (Great answer, BTW—The quick fix, the explanation, and the reference link. Thank you.)

      – Michael Scheper
      Aug 19 '18 at 15:41













    • The comment of @DavClark is still valid for Ubuntu 18.04

      – elvis.dukaj
      Oct 27 '18 at 10:15
















    15












    15








    15







    To fix this remove the following package:



    sudo apt remove libavcodec-ffmpeg-extra56


    Apt will remove the package and replace it with libavcodec-ffmpeg56 resulting in ffmpeg no longer output a warning message.



    For details on libavcodec-ffmpeg-extra56 package and why it is likely no needed, see: https://askubuntu.com/a/847566/8570






    share|improve this answer















    To fix this remove the following package:



    sudo apt remove libavcodec-ffmpeg-extra56


    Apt will remove the package and replace it with libavcodec-ffmpeg56 resulting in ffmpeg no longer output a warning message.



    For details on libavcodec-ffmpeg-extra56 package and why it is likely no needed, see: https://askubuntu.com/a/847566/8570







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Apr 13 '17 at 12:24









    Community

    1




    1










    answered Dec 30 '15 at 11:31









    markrichmarkrich

    63821024




    63821024








    • 2





      it resolved same issue in ubuntu 16.04 as well.

      – Ejaz
      Sep 24 '16 at 3:52






    • 2





      In ubuntu 17.10, this has become libavcodec-extra57 / libavcodec-extra. Amazing that this is still a thing.

      – Dav Clark
      Dec 12 '17 at 23:53











    • At the risk of upsetting the Ubuntu Police: This also worked on Mint 18. (Great answer, BTW—The quick fix, the explanation, and the reference link. Thank you.)

      – Michael Scheper
      Aug 19 '18 at 15:41













    • The comment of @DavClark is still valid for Ubuntu 18.04

      – elvis.dukaj
      Oct 27 '18 at 10:15
















    • 2





      it resolved same issue in ubuntu 16.04 as well.

      – Ejaz
      Sep 24 '16 at 3:52






    • 2





      In ubuntu 17.10, this has become libavcodec-extra57 / libavcodec-extra. Amazing that this is still a thing.

      – Dav Clark
      Dec 12 '17 at 23:53











    • At the risk of upsetting the Ubuntu Police: This also worked on Mint 18. (Great answer, BTW—The quick fix, the explanation, and the reference link. Thank you.)

      – Michael Scheper
      Aug 19 '18 at 15:41













    • The comment of @DavClark is still valid for Ubuntu 18.04

      – elvis.dukaj
      Oct 27 '18 at 10:15










    2




    2





    it resolved same issue in ubuntu 16.04 as well.

    – Ejaz
    Sep 24 '16 at 3:52





    it resolved same issue in ubuntu 16.04 as well.

    – Ejaz
    Sep 24 '16 at 3:52




    2




    2





    In ubuntu 17.10, this has become libavcodec-extra57 / libavcodec-extra. Amazing that this is still a thing.

    – Dav Clark
    Dec 12 '17 at 23:53





    In ubuntu 17.10, this has become libavcodec-extra57 / libavcodec-extra. Amazing that this is still a thing.

    – Dav Clark
    Dec 12 '17 at 23:53













    At the risk of upsetting the Ubuntu Police: This also worked on Mint 18. (Great answer, BTW—The quick fix, the explanation, and the reference link. Thank you.)

    – Michael Scheper
    Aug 19 '18 at 15:41







    At the risk of upsetting the Ubuntu Police: This also worked on Mint 18. (Great answer, BTW—The quick fix, the explanation, and the reference link. Thank you.)

    – Michael Scheper
    Aug 19 '18 at 15:41















    The comment of @DavClark is still valid for Ubuntu 18.04

    – elvis.dukaj
    Oct 27 '18 at 10:15







    The comment of @DavClark is still valid for Ubuntu 18.04

    – elvis.dukaj
    Oct 27 '18 at 10:15















    1














    On Ubuntu 18.04:



    sudo apt remove libavcodec-extra57





    share|improve this answer






























      1














      On Ubuntu 18.04:



      sudo apt remove libavcodec-extra57





      share|improve this answer




























        1












        1








        1







        On Ubuntu 18.04:



        sudo apt remove libavcodec-extra57





        share|improve this answer















        On Ubuntu 18.04:



        sudo apt remove libavcodec-extra57






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Jan 20 at 15:06









        Eric Carvalho

        41.8k17115147




        41.8k17115147










        answered Jan 20 at 13:23









        LaurentLaurent

        111




        111






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Ask Ubuntu!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f713624%2fhow-do-i-get-rid-of-ffmpeg-warning-library-configuration-mismatch-message%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Human spaceflight

            Can not write log (Is /dev/pts mounted?) - openpty in Ubuntu-on-Windows?

            張江高科駅