2010-01-16, 01:48 AM
FYI
When I was playing around with this, I had to change the following
from:
to:
since my recordings are in a directory with a space (F:\Data Files\Recordings). In case you can't see the difference, I added quotes around the "%~dp0" near the beginning. I tried to use red & bold, but it is still really hard to see.
Nice tool. Not only is it really useful, but I always learn little tricks from your code like putting ^ in front of < and > to escape them.
When I was playing around with this, I had to change the following
from:
Code:
FOR /R %~dp0 %%f IN (*.mpg *.ts *.dvr-ms *.avi) DO (call :extract "%%~f")
Code:
FOR /R [color=Red][B]"[/B][/color]%~dp0[color=red][B]"[/B][/color] %%f IN (*.mpg *.ts *.dvr-ms *.avi) DO (call :extract "%%~f")
Nice tool. Not only is it really useful, but I always learn little tricks from your code like putting ^ in front of < and > to escape them.