From c0b4dd93ed27c99eaf302ca506ca7eb1dd10e04d Mon Sep 17 00:00:00 2001 From: jessikitty Date: Tue, 9 Dec 2025 16:37:40 +1100 Subject: [PATCH] Add more batch files --- validate.bat | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 validate.bat diff --git a/validate.bat b/validate.bat new file mode 100644 index 0000000..fda1a03 --- /dev/null +++ b/validate.bat @@ -0,0 +1,34 @@ +@echo off +REM validate_videos.bat +REM Quick validation of video collection and NFC mappings + +echo ======================================== +echo VIDEO COLLECTION VALIDATOR +echo ======================================== +echo. +echo This will check: +echo - Trailer video files +echo - Specific video files +echo - NFC mapping file +echo - Missing or unmapped videos +echo. +echo Starting validation... +echo. + +python validate_videos.py + +if %ERRORLEVEL% EQU 0 ( + echo. + echo ======================================== + echo VALIDATION COMPLETED SUCCESSFULLY + echo ======================================== +) else ( + echo. + echo ======================================== + echo VALIDATION FOUND ISSUES + echo ======================================== + echo Please check the report above +) + +echo. +pause