This repository has been archived on 2023-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
automated-youtube-dl/Example systemd Service.md

621 B

Example systemd Service

/etc/systemd/system/youtube-dl.service

[Unit]
Description=Youtube-DL Daemon
After=network-online.target

[Service]
ExecStart=/usr/bin/python3 /home/user/automated-youtube-dl/downloader.py --daemon --silence-errors --sleep 60 "https://www.youtube.com/playlist?list=example12345" "/mnt/nfs/archive/YouTube/Example Playlist/"
User=user
Group=user

[Install]
WantedBy=multi-user.target

Now start the service:

sudo systemctl daemon-reload
sudo systemctl enable --now youtube-dl

You can watch the process with:

sudo journalctl -b -u youtube-dl.service