Advertisement
Guest User

Untitled

a guest
Mar 18th, 2018
1,271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. To fix this is fairly simple. First you will need at least 90 GBs free on you drive where these episodes are located. (or enough to do a season at a time), and you will need MKVToolNix to get "MKVMERGE.exe".
  2.  
  3.  
  4.  
  5. Make a new folder.
  6. Copy all episodes from S03-S09 + Movie to this folder. (or do one season at a time as this will eat a lot of space.)
  7. Make a New .bat file
  8. Copy this code and paste in the batch file.
  9. @ECHO OFF
  10.  
  11. rem Please enter the full filepath to mkvmerge.exe below without quotes or spaces
  12. rem EXAMPLE: F:\mkvtoolnix\mkvmerge.exe
  13. set MKVMERGELOCATION=
  14.  
  15. FOR %%A IN (*.mkv) DO "%MKVMERGELOCATION%" --output ".\Fixed\%%A" --aspect-ratio 0:16/9 "%%A"
  16.  
  17. ECHO ...
  18. ECHO ..
  19. ECHO .
  20. ECHO DONE CHANGING ASPECT RATIO TO 16:9.
  21. PAUSE
  22.  
  23. On line 5 paste the location to where you may have MKVMERGE.exe located on your computer. If you don't have it, it's a free download, just google it.
  24. Save and run the batch file.
  25. New fixed episode will be saved in a new folder named "Fixed" where the original episodes are located.
  26. Running the batch file may take a while if you're doing all episodes at once. You could split it up and do season at a time as long as they're in separate folders and you just move the batch file.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement