0

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
  • 105,293
  • 25
  • 200
  • 219
Mark S.
  • 103
  • 4

1 Answers1

2

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
  • 105,293
  • 25
  • 200
  • 219