Quote:
Originally Posted by Just Alex
can you do it server side? If so how does command line looks like?
|
could do something like this
Code:
for f in *.mp4; do ffmpeg -y -i "$f" -f image2 -ss 10 -vframes 1 -an "${f%.mp4}.jpg"; done
would grab the first frame of every video in a directory of mp4 files