Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. @ECHO OFF
  2. TITLE MKV Metadata Remover
  3. set mkvpropedit="E:\Portable Applications\PortableApps\mkvtoolnix\mkvpropedit.exe"
  4. ECHO.
  5. ECHO This program executes MKVPropedit to remove all metadata from all mkv
  6. ECHO files in the current directory.
  7. ECHO.
  8. :choice
  9. set /P c=Are you sure you want to continue[Y/N]?
  10. if /I "%c%" EQU "Y" goto :somewhere
  11. if /I "%c%" EQU "N" goto :somewhere_else
  12. goto :choice
  13. :somewhere
  14. FOR %%G IN (*.mkv) DO %mkvpropedit% "%%G" --tags all: -d title --delete-attachment 1
  15. ECHO.
  16. ECHO===================
  17. ECHO Process Complete
  18. ECHO===================
  19. ECHO.
  20. pause
  21. exit
  22. :somewhere_else
  23. ECHO Closing program...
  24. pause
  25. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement