Skip to content

Django project which uses youtube-dl to download and serve videos.

License

Unknown, GPL-3.0 licenses found

Licenses found

Unknown
LICENSE
GPL-3.0
COPYING
Notifications You must be signed in to change notification settings

wreiner/viddlws

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ViddlWS

ViddlWS (Video Download Web Service) is a Django project which uses yt_dlp to archive videos from various sites like YouTube and create podcast feeds from them.

License: GPL v3 Built with Cookiecutter Django Black code style

Features

  • Download and serve videos from various sites like YouTube
  • Extract audio or store only audio data from the sources
  • Tag the downloaded items
  • Subscribe to a podcast feed of tagged items

Screenshots

alt text alt text alt text
alt text alt text alt text

Documentation

The documentation can be found in the docs folder or on ViddlWS - Read The Docs.

Quick start

# Clone the repository
git clone https://github.com/wreiner/viddlws
cd viddlws

# Create the config files based on the supplied examples
mkdir -p .envs/.production
cp envfiles-examples/.django-example .envs/.production/.django
cp envfiles-examples/.postgres-example .envs/.production/.postgres

# Set the SECRET_ID
SECRET_ID=$(python3 -c "import secrets; print(secrets.token_urlsafe())")
sed -i "s/<generate-key>/${SECRET_ID}/" .envs/.production/.django

# Set the admin url
ADMIN_URL=$(echo $RANDOM | md5sum | head -c 32; echo;)
sed -i "s/<generate-url>/${ADMIN_URL}\//" .envs/.production/.django

# set the domain
sed -i "s/domain.com/my.fqdn.com/" .envs/.production/.django

# set the flower password
FLOWER_PASSWORD=$(echo $RANDOM | md5sum | head -c 32; echo;)
sed -i "s/<set-password>/${FLOWER_PASSWORD}/" .envs/.production/.django

# set the email configuration in .envs/.production/.django

# set the postgres password
POSTGRES_PASSWORD=$(echo $RANDOM | md5sum | head -c 32; echo;)
sed -i "s/<set-password>/${POSTGRES_PASSWORD}/" .envs/.production/.postgres

# make sure that the downloads directory exists
sudo mkdir -p /viddlws/downloads
sudo chown 101: /viddlws/downloads/

# startup ViddlWS for the first time
docker-compose -f production-behind-proxy.yml pull
docker-compose -f production-behind-proxy.yml up

# the initial admin user password will be echo'ed in the django container logs
docker logs viddlws_django_1 2>&1| grep "New admin password:"

# change site domain in admin gui
# open https://my.fqdn.com/${ADMIN_URL}/
# navigate to Sites and change domain.com entry

About

Django project which uses youtube-dl to download and serve videos.

Resources

License

Unknown, GPL-3.0 licenses found

Licenses found

Unknown
LICENSE
GPL-3.0
COPYING

Stars

Watchers

Forks

Packages

No packages published