2005-09-21, 07:26 PM
Hey guys,
c2avi wasn't processing some of my mpgs because no commercials were found but comclean was renaming the files anyway. It would rename the mpgs to _original when nothing was done, leaving no .mpg left in the directory.
I edited comclean.bat to do a variable check for cutpoints. If there were no cutpoints found, it will not do any moving/renaming.
Just replace the "move" lines with the below:
if DEFINED cutpoints move "%~dpn1.mpg" "%~dpn1_original.mpg"
if DEFINED cutpoints move "%~dpn1_clean.mpg" "%~dpn1.mpg"
It's worked for me, just passing it along.
Cheers,
ReZ
c2avi wasn't processing some of my mpgs because no commercials were found but comclean was renaming the files anyway. It would rename the mpgs to _original when nothing was done, leaving no .mpg left in the directory.
I edited comclean.bat to do a variable check for cutpoints. If there were no cutpoints found, it will not do any moving/renaming.
Just replace the "move" lines with the below:
if DEFINED cutpoints move "%~dpn1.mpg" "%~dpn1_original.mpg"
if DEFINED cutpoints move "%~dpn1_clean.mpg" "%~dpn1.mpg"
It's worked for me, just passing it along.
Cheers,
ReZ