Run yt-dl in background:


You can run yt-dl in background (even when logged off), this can be good when taking a long time, can also run from my raspberry pi server over ssh:
Command: nohup yt-dl url >> log.txt &

"nohup comand &" is the part that allows you to run background commands, with command being your actual command to run in the background. also recommend to out put to a log file, to troubleshoot issues.

-------------------------------------------------------------------------
Source | Date (Original): October 3rd 2021. | Date (Replaced youtube-dl with yt-dl): December 11th 2024.

Back