document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #!/bin/bash
  2.  
  3. FILES=`find -name "*.mp4"`
  4. for file in $FILES
  5. do
  6.         strip=${file%.*}
  7.         echo $file "=>"  ${strip}.jpg
  8.         ffmpeg -i $file -an -ss 00:00:03 -an -r 1 -vframes 1 -y ${strip}.jpg
  9. done
');