1

I am trying to convert group of images .png to video .webm:

ffmpeg -i %03d.png output.webm

Getting error:

'ffmpeg' is not recognized as an internal or external command, operable program or batch file.

Using Windows 10.

llogan
  • 121,796
  • 28
  • 232
  • 243
Mark S.
  • 113
  • 1
  • 5
  • You need to install `ffmpeg` using this installation tutorial : https://www.hostinger.in/tutorials/how-to-install-ffmpeg – KNU May 15 '23 at 02:11

1 Answers1

3

3 solutions:

  • Put ffmpeg.exe into the folder that has your PNG images.

  • Or, in cmd provide the full path to ffmpeg.exe. Example:

     "C:\Users\Mark\Downloads\ffmpeg-20210913-28f7a91-win64-static\bin\ffmpeg.exe" -i %03d.png output.webm
    
  • Or, add the folder with ffmpeg.exe into your system PATH.

llogan
  • 121,796
  • 28
  • 232
  • 243