Probleemoplossing¶
Login Problemen¶
Login mislukt¶
Symptoom: Authenticatie mislukt of browser gaat niet voorbij login pagina.
Oplossingen:
-
Check credentials in
.env:bash cat .env -
Draai met debug modus om te zien wat er gebeurt:
bash python thuis.py <url> --no-headless -
Zorg dat je VRT MAX abonnement actief is.
Download Problemen¶
Download mislukt¶
Symptoom: Download start maar faalt met een fout.
Oplossingen:
-
Check of FFmpeg geïnstalleerd is:
bash ffmpeg -version -
Installeer FFmpeg als het ontbreekt: ```bash # Ubuntu/Debian sudo apt install ffmpeg
# macOS brew install ffmpeg ```
- Check beschikbare schijfruimte.
Module Fouten¶
Module niet gevonden¶
Symptoom: ModuleNotFoundError: No module named 'xxx'
Oplossing:
# Activeer virtual environment
source venv/bin/activate
# Herinstalleer dependencies
pip install -r requirements.txt
Browser Problemen¶
Playwright faalt te starten¶
Oplossing:
# Herinstalleer Playwright browsers
playwright install chromium