2008-10-13, 03:35 AM
JavaWiz Wrote:Not 100% sure (stattik should verify), but I think you need to add the following after the :cleanup label in the batch file:
Code::cleanup
IF /I %update_db% EQU yes (
ECHO.
ECHO Updating GBPVR database with new extension--%output%
ECHO.
FOR %%d in (%output%) DO (
FOR %%b in (%name%) DO (
%sqlite3_path%sqlite3.exe -separator "," "%gbpvr_db_path%" "UPDATE RECORDING_SCHEDULE SET filename = '%local_recordings_disk_letter%%%~pnxd' where filename like '%local_recordings_disk_letter%%%~pnxb';"
SET question_mark_check1=%local_recordings_disk_letter%%%~pnd
SET question_mark_check2=%%~nxd
SET question_mark_check3=%local_recordings_disk_letter%%%~pnb
SET question_mark_check4=%%~nxb
)
)
)
[B][SIZE=3][COLOR=red]IF /I %dvdrip% NEQ yes ([/COLOR][/SIZE][/B]
[B][SIZE=3][COLOR=red]WizRenameRecording "%newname%" -default[/COLOR][/SIZE][/B]
[B][SIZE=3][COLOR=red])[/COLOR][/SIZE][/B]
%debug%
This implies that you've run WizRename recording and set a default pattern.
so would i still need to post the snipet that I posted above (which I got from you) or does this replace that? if so, where does that goes?