Advertisement
Guest User

ffmpeg

a guest
Feb 18th, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. @echo off
  2.  
  3. set "ffmpeg_bin=[location]"
  4. set "out_path=[location]"
  5. cd /D "[location]"
  6.  
  7. for %%f in (*.mkv) do (
  8. echo %%~f
  9. %ffmpeg_bin% -n -ss 00:11:00 -i "%%~f" -frames 1 "%out_path%\%%~nf-thumb.jpg"
  10. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement