Advertisement
Guest User

Format

a guest
Feb 18th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. [ffmpeg]
  2. @echo off
  3.  
  4. set "ffmpeg_bin=C:\Users\Termnl\AppData\Roaming\ffmpeg\bin\ffmpeg.exe"
  5. set "out_path=C:\Users\Termnl\Videos\Series\One Piece (1999)\Season 21"
  6. cd /D "C:\Users\Termnl\Videos\Series\One Piece (1999)\Season 21"
  7.  
  8. for %%f in (*.mkv) do (
  9. echo %%~f
  10. %ffmpeg_bin% -n -ss 00:11:00 -i "%%~f" -frames 1 "%out_path%\%%~nf-thumb.jpg"
  11. )
  12.  
  13. [Reset]
  14. @echo off
  15.  
  16. Reg Delete "HKCU\Software\Microsoft\Windows\Shell\Bags" /F
  17. Reg Delete "HKCU\Software\Microsoft\Windows\Shell\BagMRU" /F
  18.  
  19. Reg Delete "HKCU\Software\Microsoft\Windows\ShellNoRoam\Bags" /F
  20. Reg Delete "HKCU\Software\Microsoft\Windows\ShellNoRoam\BagMRU" /F
  21.  
  22. Reg Delete "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags" /F
  23. Reg Delete "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU" /F
  24.  
  25. Reg Delete "HKCU\Software\Classes\Wow6432Node\Local Settings\Software\Microsoft\Windows\Shell\Bags" /F
  26. Reg Delete "HKCU\Software\Classes\Wow6432Node\Local Settings\Software\Microsoft\Windows\Shell\BagMRU" /F
  27.  
  28. Reg Delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Defaults" /F
  29. Reg Delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer" /F
  30.  
  31. taskkill /f /im explorer.exe
  32. start explorer.exe
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement