Re: movie from pictures

2016-06-11 Thread Karim
On 10/06/2016 23:31, alex wright wrote: I find shlex.split to be most useful to make my arguments a list in these cases. On Jun 9, 2016 3:28 PM, "MRAB" wrote: On 2016-06-09 19:58, Peter Otten wrote: Nev wrote: Thank you for your reply. I tried something like this in python code: from sub

Re: movie from pictures

2016-06-10 Thread alex wright
I find shlex.split to be most useful to make my arguments a list in these cases. On Jun 9, 2016 3:28 PM, "MRAB" wrote: > On 2016-06-09 19:58, Peter Otten wrote: > >> Nev wrote: >> >> Thank you for your reply. I tried something like this in python code: >>> >>> from subprocess import call >>> call

Re: movie from pictures

2016-06-09 Thread MRAB
On 2016-06-09 19:58, Peter Otten wrote: 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.

Re: movie from pictures

2016-06-09 Thread Peter Otten
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

Re: movie from pictures

2016-06-09 Thread Nev
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:

Re: movie from pictures

2016-06-08 Thread Lawrence D’Oliveiro
On Thursday, June 9, 2016 at 10:11:16 AM UTC+12, Nev wrote: > ... afterwards use some ffmpeg command to combine them into a picture. This is a very common use case for FFmpeg. 1) Generate your frames in some high-quality lossless format, like PNG. 2) Name them sequentially “0001.png”, “0002.png”

movie from pictures

2016-06-08 Thread nevzat . guler
Dear Users, I am trying to combine several pictures to create a movie file. I create the pictures in a loop. I would like to add each picture to a movie within the loop, like it is done in MATLAB. However, it is also acceptable to create all the picture in the loop, afterwards use some ffmpeg c