HI CATS
please can you consider my batch
nut choose.exe is problematic for windows 10 64bit and I need to replace it with another command that do the same functions.Code:echo ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿ echo ³ ³ echo ³ MP4 GOpro NON-50FPS versus HD 25fps ³ echo ³ LowPassFiltering On/Off ³ echo ³ press "Y" to smooth ³ echo ³ ³ echo ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ echo. CHOOSE.EXE /c:ynq /t:n,7 " until 7 seconds press Y to smooth details " set "LowPassFilter=0" if errorlevel==255 echo No such choice (255) if not errorlevel==4 if errorlevel==3 echo The choice was a q (3) if not errorlevel==3 if errorlevel==2 echo LowPass OFF if not errorlevel==2 if errorlevel==1 (Set LowPassFilter=1) if not errorlevel==1 if errorlevel==0 echo The choice was interrupted (0) IF "%LowPassFilter%"=="1" echo LowPassFiltering ATTIVATO per ammorbidire contorni IF "%LowPassFilter%"=="1" Set "filteringVirtualdubMode=135" IF "%LowPassFilter%"=="0" echo LowPassFiltering Disattivato IF "%LowPassFilter%"=="0" Set "filteringVirtualdubMode=7"
How can I do?
thanks
+ Reply to Thread
Results 1 to 4 of 4
-
-
Code:
echo ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿ echo ³ ³ echo ³ MP4 GOpro NON-50FPS versus HD 25fps ³ echo ³ LowPassFiltering On/Off ³ echo ³ press "Y" to smooth ³ echo ³ ³ echo ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ echo. CHOICE /c NYQ /t 7 /d N /m " until 7 seconds press Y to smooth details " if errorlevel 3 goto :eof if errorlevel 2 ( Set "filteringVirtualdubMode=7" & echo LowPassFiltering Disattivato ) else ( Set "filteringVirtualdubMode=135" & echo LowPass OFF & echo LowPassFiltering ATTIVATO per ammorbidire contorni )
If q isn't exit, then you can either add a :Next lable and goto it each time, or you can go the easy way and compare the %errorlevel% variable rather than the special 'if' command.
if %errorlevel%==3 ( do this )Last edited by ndjamena; 10th Nov 2015 at 03:42.
-
but I'm a cat, not a user
PLEASE
I have try
Code:Set "LowPassFilter=1" CHOICE /c:ynq /t:n,7 " until 7 seconds press Y to smooth details " if errorlevel 3 goto :eof if errorlevel 2 ( Set "filteringVirtualdubMode=135" & echo LowPass OFF & echo LowPassFiltering ATTIVATO per ammorbidire contorni ) else ( Set "filteringVirtualdubMode=7" & echo LowPassFiltering Disattivato ) IF "%LowPassFilter%"=="1" echo LowPassFiltering ACTIVE IF "%LowPassFilter%"=="0" echo LowPassFiltering NOT Ative
Ho can it be modified? thanks -
Sorry, I just copied your line, I thought "choose.exe" was a spelling mistake but maybe it's another program...
Fixed now, or at least it should be.
Similar Threads
-
Batch processing of audio
By BobAchgill in forum AudioReplies: 1Last Post: 2nd Apr 2015, 14:36 -
batch routine that check if all files in a dir have the same commercialname
By marcorocchini in forum Newbie / General discussionsReplies: 4Last Post: 26th Feb 2015, 12:08 -
Batch processing in Avidemux 2.6
By tokintmash in forum Video ConversionReplies: 1Last Post: 21st Jan 2015, 04:24 -
VOB2MPG Batch Processing
By jonj1611 in forum SVCD2DVD & VOB2MPGReplies: 2Last Post: 26th Aug 2011, 13:35 -
Batch Processing
By keefytee in forum SVCD2DVD & VOB2MPGReplies: 0Last Post: 7th May 2011, 04:41