Skip to content
Advertisement

ffmpeg does not recognize used codec in any way

I am using ffmpeg-python to combine video and audio in my program but for one video file I constantly get this error:

JavaScript

It just doesn’t recognize it. I know that the codec is av01 I have tried passing it in as the vcodec keyword but nothing would work. I tried going to cmd directly and adding to the ‘analyzeduration’ and ‘probsize’ but nothing seems to work. How can I fix this? My code:

JavaScript

Advertisement

Answer

It looks like your ffmpeg was not built with AV1 support. Neither --enable-libdav1d nor --enable-libaom appear in the configuration. It’s also really old (a 2.0 dev build from 2013).

You can confirm with the ffmpeg -codecs command, and look for a line like this

DEV.L. av1 Alliance for Open Media AV1 (decoders: libdav1d libaom-av1 )

If it’s missing, or there’s no D, then it will not work.

Note that you have a shared build (--disable-static --enable-shared), so you’ll also need to have the libraries installed separately, even if they were enabled.


Consider increasing the value for the ‘analyzeduration’ and ‘probesize’ options

This won’t work in this case. It’s already found the parameters – (av01 / 0x31307661), 2560x1440, 5427 kb/s – but doesn’t know what to do with them.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement