Last active
June 11, 2024 23:06
-
-
Save ApolitoLT/878b35ba59fb040d83a569a78b389806 to your computer and use it in GitHub Desktop.
Cómo agregar Covers a archivos MKV utlizando SCRIPT con Mkvpropedit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
FOR %%f IN (*.mkv) DO ( | |
"C:\Program Files\MKVToolNix\mkvpropedit.exe" "%%~nf.mkv" --delete-attachment "mime-type:image/jpeg" --delete-attachment "mime-type:image/png" --delete-attachment "mime-type:image/x-png" --attachment-name "cover.jpg" --attachment-mime-type "image/jpeg" --add-attachment "cover.jpg" | |
) | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment