Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- FILES=`find -name "*.mp4"`
- for file in $FILES
- do
- strip=${file%.*}
- echo $file "=>" ${strip}.jpg
- ffmpeg -i $file -an -ss 00:00:03 -an -r 1 -vframes 1 -y ${strip}.jpg
- done
Advertisement
Add Comment
Please, Sign In to add comment