Skip to content

Probleemoplossing

Login Problemen

Login mislukt

Symptoom: Authenticatie mislukt of browser gaat niet voorbij login pagina.

Oplossingen:

  1. Check credentials in .env:

    cat .env
    

  2. Draai met debug modus om te zien wat er gebeurt:

    python thuis.py <url> --no-headless
    

  3. Zorg dat je VRT MAX abonnement actief is.


Download Problemen

Download mislukt

Symptoom: Download start maar faalt met een fout.

Oplossingen:

  1. Check of FFmpeg geïnstalleerd is:

    ffmpeg -version
    

  2. Installeer FFmpeg als het ontbreekt:

    # Ubuntu/Debian
    sudo apt install ffmpeg
    
    # macOS
    brew install ffmpeg
    

  3. 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


Nog Steeds Problemen?