Toplu MKV Meta Veri Kaldırma - Toplu Makası


3

mkvpropeditBir dizindeki tüm mkv dosyalarındaki tüm etiketleri kullanacak ve kaldıracak bir toplu iş dosyası oluşturmaya çalışıyorum , şu ana kadar bunu almayı başardım:

@ECHO OFF
TITLE MKV Metadata Remover
ECHO.
ECHO This program executes MKVPropedit to remove all metadata from all mkv 
files in the current directory.
ECHO.

:choice
set /P c=Are you sure you want to continue[Y/N]?
if /I "%c%" EQU "Y" goto :somewhere
if /I "%c%" EQU "N" goto :somewhere_else
goto :choice


:somewhere

FOR /F "tokens=*" %G IN ('dir /b *.mkv') DO mkvpropedit "%G" --tags all: -d 
title --delete-attachment "1" 
pause 
exit

:somewhere_else

ECHO Closing program...
pause
exit

Ancak, Yseçeneği kullanırken pencere kapanır - hatta .mkvdosyalarla dolu bir dizinde .

Herhangi bir yardım, okuma için teşekkürler, çok takdir edilecektir.

Yanıtlar:


Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.