Troubleshooting¶
Login Issues¶
Login fails¶
Symptom: Authentication fails or browser doesn't proceed past login page.
Solutions:
-
Check credentials in
.env:bash cat .env -
Run with debug mode to see what's happening:
bash python thuis.py <url> --no-headless -
Make sure your VRT MAX subscription is active.
Download Issues¶
Download fails¶
Symptom: Download starts but fails with an error.
Solutions:
-
Check if FFmpeg is installed:
bash ffmpeg -version -
Install FFmpeg if missing: ```bash # Ubuntu/Debian sudo apt install ffmpeg
# macOS brew install ffmpeg ```
- Check available disk space.
Module Errors¶
Module not found¶
Symptom: ModuleNotFoundError: No module named 'xxx'
Solution:
# Activate virtual environment
source venv/bin/activate
# Reinstall dependencies
pip install -r requirements.txt
Browser Issues¶
Playwright fails to launch¶
Solution:
# Reinstall Playwright browsers
playwright install chromium