Search found 2 matches

by martinkk
2016-01-07T07:30:43-07:00
Forum: Users
Topic: Running convert from bat file
Replies: 4
Views: 5270

Re: Running convert from bat file

@snibgo
Yes I know, but isn't there a way to easily mask the "%05d" somehow, so that the two commands are working the same way as entered manually?
by martinkk
2016-01-07T03:41:38-07:00
Forum: Users
Topic: Running convert from bat file
Replies: 4
Views: 5270

Running convert from bat file

Hi, I would like to create some mp4 videos from webcam images I take every 15mins. That's how I would like to do it (works fine when I run the commands manually in cmd). convert *.JPG -delay 10 -morph 10 %05d.morphed.jpg ffmpeg -r 25 -i %05d.morphed.jpg video.mp4 The idea was to run these two comman...