ffmpeg Error: Pattern type 'glob' was selected but globbing is not support ed by this libavformat build

后端 未结 1 1453
野性不改
野性不改 2020-12-30 21:02

I\'m trying to convert group of \".jpg\" files acting as individual frames into 1 single mpeg video \".mp4\"

Example parameters i used:

frame duratio         


        
相关标签:
1条回答
  • 2020-12-30 21:17

    -pattern_type glob requires glob.h.

    glob is defined in the POSIX standard and it's not available on Windows by default.

    Create/rename your files using sequential file naming image###.jpg then use sequence wildcards like -i image%03d.jpg as input.

    0 讨论(0)
提交回复
热议问题