Hi there,
You could try something like this (just quickly typed it):
you will need to specify the path to the location of comskip
@echo off
REM
REM place the channel names within the brackets that you do not want to run Comskip for
REM We will loop through each name looking to see if it exists in the recording/filename
REM
FOR %%A IN (itv bbc bbc2) DO (
echo "%1" | findstr /I /C:"%%A" 1>nul 2>&1
if errorlevel 1 (
REM
REM No match found
REM
) else (
REM
REM Match found - so bypassing comskip and jumping straight to the end
REM
goto end
)
)
REM
REM Lets run comskip
REM
"c:\program files (x86)\comskip\comskip.exe" "%1"
:End
Cheers,
J.
You could try something like this (just quickly typed it):
you will need to specify the path to the location of comskip
@echo off
REM
REM place the channel names within the brackets that you do not want to run Comskip for
REM We will loop through each name looking to see if it exists in the recording/filename
REM
FOR %%A IN (itv bbc bbc2) DO (
echo "%1" | findstr /I /C:"%%A" 1>nul 2>&1
if errorlevel 1 (
REM
REM No match found
REM
) else (
REM
REM Match found - so bypassing comskip and jumping straight to the end
REM
goto end
)
)
REM
REM Lets run comskip
REM
"c:\program files (x86)\comskip\comskip.exe" "%1"
:End
Cheers,
J.