A youtube downloader web app using Django and yt_dlp.
- Download yt_dlp, which is an alternative to the pytube module.
pip install yt_dlp
- Install django (windows):
py -m pip install Django
- Your project may not work properly until you apply the migrations for app(s):
python manage.py migrate
- Install ffmpeg with choco for video processing (Might need to run as admin):
choco install ffmpeg
- Run app locally:
python manage.py runserver
OR just:
pip install -r requirements.txt