@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?
Search found 2 matches
- 2016-01-07T07:30:43-07:00
- Forum: Users
- Topic: Running convert from bat file
- Replies: 4
- Views: 5622
- 2016-01-07T03:41:38-07:00
- Forum: Users
- Topic: Running convert from bat file
- Replies: 4
- Views: 5622
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 ...