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
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
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.
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
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:
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”
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