Answer the question
In order to leave comments, you need to log in
How to make youtube-dl on a remote server (Ubuntu) download files to the end?
I start download like this:
nohup youtube-dl -f 140 https://www.youtube.com/watch?v=zV3k9OlQTqs &
--skip-unavailable-fragments
Answer the question
In order to leave comments, you need to log in
I will join.
The developers abandoned support for youtube-dl and Google quite quickly blocked the normal speed of its work (intentionally, or YouTube just "develops" and at the same time broke the work of the utility). Now the yt-dlp
fork is actively developing , which has a download speed at the level, and in the future it has not yet been abandoned.
Since it's a fork, it's backwards compatible. Change youtube-dl to yt-dlp and everything works.
MB you have problems with the Internet, for example, it is slow and the download is interrupted , a possible fix ,
You can try using the download script
import youtube_dl
def download_(link):
ydl_opts = {'outtmpl': 'video/%(title)s.%(ext)s'}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download([link])
download_("https://www.youtube.com/watch?v=zV3k9OlQTqs")
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question