movie from pictures

Peter Otten __peter__ at web.de
Thu Jun 9 14:58:05 EDT 2016


Nev wrote:

> Thank you for your reply. I tried something like this in python code:
> 
> from subprocess import call
> call(["ffmpeg -framerate 4/1 -start_number 1 -i
> C:\\Projects\\data2\\img_%05d.png -c:v libx264 -r 30 -pix_fmt yuv420p
> C:\\Projects\\data2\\movie.mp4"])
> 
> But it did not work. I get FileNotFoundError: [WinError 2] The system
> cannot find the file specified..

You have to pass the command-line arguments as separate items in the list:

call(["ffmpeg", 
      "-framerate", "4/1",
      "-start_number", "1",
      "-i", "C:\\Projects\\data2\\img_%05d.png",
      ... # and so on
      ])

> On the other hand, in-loop solution would be more preferable since it lets
> me to use variable names of the images and paths..





More information about the Python-list mailing list