FFMPEG: Windows binaries with globbing (libavformat) support?

8

1

I am struggling to get ffmpeg to combine a bunch of images in to a video which have a format with a full 17 digit timestamp. 17 digits is well beyond what -i %d will support. So I want to use globbing to simply order them using full filename, however I keep getting the error:

[image2 @ 0000000002d0d1e0] Pattern type 'glob' was selected but globbing is not supported by this libavformat build

Does anyone know where I can get pre-built binaries to get around this problem? Here are example filenames I have:

screenshot_20150417165520593.png
screenshot_20150417165520805.png
screenshot_20150417165521005.png

gnychis

Posted 2015-04-17T20:57:07.313

Reputation: 181

Guessing you're using windows? It seems Windows builds don't support globbing/true-wildcards so it's suggested to rename your input/source files :( https://stackoverflow.com/questions/31201164/ffmpeg-error-pattern-type-glob-was-selected-but-globbing-is-not-support-ed-by https://ffmpeg.org/faq.html#How-do-I-encode-single-pictures-into-movies_003f

– gregg – 2018-08-07T19:58:41.333

This might be an old version of libavformat. You should upgrade. – Quadcubic – 2019-05-04T09:46:44.173

No answers