Search found 2 matches

by Whale Cooper
31 Aug 2012 06:53
Forum: DOS Batch Forum
Topic: Batch avi to image sequence using ffmpeg [SOLVED]
Replies: 2
Views: 2944

Re: Batch avi to image sequence using ffmpeg

Thanks a million, Squashman! Works like a charm.
by Whale Cooper
30 Aug 2012 12:54
Forum: DOS Batch Forum
Topic: Batch avi to image sequence using ffmpeg [SOLVED]
Replies: 2
Views: 2944

Batch avi to image sequence using ffmpeg [SOLVED]

Hey guys! Long story short. I'm using ffmpeg to convert .avi file into a .png image sequence. This one works just fine: @ ECHO OFF FOR %%A IN (*.avi) DO CALL :avi2png "%%A" :avi2png ffmpeg.exe -y -i %* -sameq -f image2 -c:v png "%%03d.png" ECHO. GOTO :EOF But I want the script to...