LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > General
User Name
Password
General This forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!

Notices


Reply
  Search this Thread
Old 12-20-2023, 02:27 AM   #1
Xeratul
Senior Member
 
Registered: Jun 2006
Location: UNIX
Distribution: FreeBSD
Posts: 2,658

Rep: Reputation: 255Reputation: 255Reputation: 255
Is Youtube-dl downloader still active and running ?


Hello,

On debian stable, I installed youtube yt-dl to try but it seems that it is not working any longer.

https://duckduckgo.com/?...
https://youtu.be/Hd_Dfu6EG0Y

yt-dl "https://www.youtube.com/watch?v=Hd_Dfu6EG0Y" (...)

The video cannot be downloaded.

Seems yt-dl outdated, maybe?

Kind regards
 
Old 12-20-2023, 08:38 AM   #2
//////
Member
 
Registered: Nov 2005
Location: Land of Linux :: Finland
Distribution: Arch Linux && OpenBSD 7.4 && Pop!_OS && Kali && Qubes-Os
Posts: 824

Rep: Reputation: 350Reputation: 350Reputation: 350Reputation: 350
Quote:
Originally Posted by Xeratul View Post
Hello,

On debian stable, I installed youtube yt-dl to try but it seems that it is not working any longer.

https://duckduckgo.com/?...
https://youtu.be/Hd_Dfu6EG0Y

yt-dl "https://www.youtube.com/watch?v=Hd_Dfu6EG0Y" (...)

The video cannot be downloaded.

Seems yt-dl outdated, maybe?

Kind regards
it works for me, yt-dlp that is.

Code:
yt-dlp https://www.youtube.com/watch?v=GxygQDf9VUs

Last edited by //////; 12-20-2023 at 08:39 AM.
 
Old 12-20-2023, 10:13 AM   #3
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,338

Rep: Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331
yt-dlp is king at the moment because the d/l speeds are faster. Sure it stops working occasionally. I find it best to uninstall it, and install again via pip3 every time. Never fails.
 
Old 12-20-2023, 04:43 PM   #4
obobskivich
Member
 
Registered: Jun 2020
Posts: 596

Rep: Reputation: Disabled
I believe the package name has changed to yt-dlp, as has been mentioned here (and as business_kid points out, you may need to re-install it to get latest version via pip or some other vehicle) - I don't know enough about the underlying project to tell you if that's a fork or what. I believe Invidious is still also developed (but the original, developer-maintained instance has been taken offline (there's loads of third-party instances though)), and depending on the video/content can also download videos (at least at one time it had this feature).
 
Old 02-04-2024, 07:29 AM   #5
Xeratul
Senior Member
 
Registered: Jun 2006
Location: UNIX
Distribution: FreeBSD
Posts: 2,658

Original Poster
Rep: Reputation: 255Reputation: 255Reputation: 255
How do you do that?

youtube-dl is not working into debian testing.

But anyhow it seems to be protected.
https://youtu.be/5gga8E43clk
 
Old 02-04-2024, 08:12 AM   #6
//////
Member
 
Registered: Nov 2005
Location: Land of Linux :: Finland
Distribution: Arch Linux && OpenBSD 7.4 && Pop!_OS && Kali && Qubes-Os
Posts: 824

Rep: Reputation: 350Reputation: 350Reputation: 350Reputation: 350
yt-dlp is not working atm, i get it via apt, using Pop!_OS.
ill try to get it from github, if it works then.

EDIT:

nightly works.

Code:
# To install nightly with pip:
python -m pip install -U --pre yt-dlp
you might have to use python3 at that command above.

Last edited by //////; 02-04-2024 at 08:29 AM.
 
Old 02-04-2024, 08:52 AM   #7
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,338

Rep: Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331
I found passing 'uninstall' & 'install' to pip in 2 separate runs worked last time. AFAIK, youtube-dl is working, but at a more leisurely pace. So there isn't the same pressure on the guy for updates.
 
Old 02-04-2024, 09:11 AM   #8
Nishtya
Member
 
Registered: Feb 2004
Distribution: Mint Cinnamon, Debian sid KDE, PCLOS Cinnamon, Manjaro XFCE
Posts: 281

Rep: Reputation: 32
I am unable to install persepolis on a new manjaro install as it is using the old youtube-dl name as a dependency. And they don't have yt-dl in repo. Previously installed persepolis on other older distro is functioning alright so far.
 
Old 02-05-2024, 04:57 AM   #9
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,338

Rep: Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331
Well, there's ty-dl.org or you could try pip
 
Old 02-07-2024, 10:47 PM   #10
ordealbyfire83
Member
 
Registered: Oct 2006
Location: Leiden, Netherlands
Distribution: LFS, Ubuntu Hardy
Posts: 302

Rep: Reputation: 89
A bit confusing as the OP first mentions "yt-dl" and then "youtube-dl." Assuming you mean youtube-dl, this is not the same as yt-dlp which is related but is a fork. youtube-dl will work with Python 2 and 3 but yt-dlp works only with Python 3. There was a time when youtube-dl wasn't being maintained anymore. Not sure if that is still the case, but around this time I migrated to yt-dlp.

https://github.com/yt-dlp/yt-dlp

I wouldn't hassle with installing it from the distribution. Just get it from github and run 'python3 yt-dlp -U' periodically and that should update it, if there is an update available.
 
Old 04-10-2024, 07:38 AM   #11
Xeratul
Senior Member
 
Registered: Jun 2006
Location: UNIX
Distribution: FreeBSD
Posts: 2,658

Original Poster
Rep: Reputation: 255Reputation: 255Reputation: 255
It depends which OS you do use.

The ubuntu with 2022 will be toooooo old.

Quote:
user@notebook:~$ yt-dlp --version
2022.04.08


But the Armbian bookworm, e.g. 2023.03.04 will work very well.


yt-dlp --version
2023.03.04

yt-dlp -F www.youtube....

Quote:
ID EXT RESOLUTION FPS CH │ FILESIZE TBR PROTO │ VCODEC VBR ACODEC ABR ASR MORE INFO
──────────────────────────────────────────────────────────────────────────────────────────────────── ───────
sb2 mhtml 48x27 0 │ mhtml │ images storyboard
sb1 mhtml 80x45 0 │ mhtml │ images storyboard
sb0 mhtml 160x90 0 │ mhtml │ images storyboard
140 m4a audio only 2 │ 16.17MiB 129k dash │ audio only mp4a.40.2 129k 44k medium, m4a_dash
251 webm audio only 2 │ 13.23MiB 106k dash │ audio only opus 106k 48k medium, webm_dash
160 mp4 256x144 30 │ 2.19MiB 18k dash │ avc1.4d400c 18k video only 144p, mp4_dash
134 mp4 640x360 30 │ 6.52MiB 52k dash │ avc1.4d401e 52k video only 360p, mp4_dash
18 mp4 640x360 30 2 │ ~23.09MiB 181k https │ avc1.42001E 181k mp4a.40.2 0k 44k 360p
22 mp4 1280x720 30 2 │ ~34.47MiB 269k https │ avc1.64001F 269k mp4a.40.2 0k 44k 720p
136 mp4 1280x720 30 │ 17.62MiB 141k dash │ avc1.64001f 141k video only 720p, mp4_dash
137 mp4 1920x1080 30 │ 30.93MiB 248k dash │ avc1.640028 248k video only 1080p, mp4_dash
 
Old 04-11-2024, 05:36 PM   #12
rclark
Member
 
Registered: Jul 2008
Location: Montana USA
Distribution: KUbuntu, Fedora (KDE), PI OS
Posts: 485

Rep: Reputation: 179Reputation: 179
I simply installed yt-dlp via 'curl' then periodically call > sudo yt-dlp -U to get the latest when needed. Running latest KUbuntu LTS.

Here is a reference to a bunch of different ways of installing and keeping up-to-date... : https://ostechnix.com/yt-dlp-tutorial/
 
Old 04-12-2024, 12:37 AM   #13
Xeratul
Senior Member
 
Registered: Jun 2006
Location: UNIX
Distribution: FreeBSD
Posts: 2,658

Original Poster
Rep: Reputation: 255Reputation: 255Reputation: 255
Quote:
Originally Posted by rclark View Post
I simply installed yt-dlp via 'curl' then periodically call > sudo yt-dlp -U to get the latest when needed. Running latest KUbuntu LTS.

Here is a reference to a bunch of different ways of installing and keeping up-to-date... : https://ostechnix.com/yt-dlp-tutorial/
do you have maybe a bash script for me? kind regards
thank you
 
Old 04-12-2024, 06:37 AM   #14
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,338

Rep: Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331Reputation: 2331
Being lazy, I installed via pip3. Unfortunately, that lacks an 'update' option, so it's two one-line commands.
 
Old 04-12-2024, 10:22 PM   #15
leclerc78
Member
 
Registered: Dec 2020
Posts: 169

Rep: Reputation: Disabled
curl -L https://github.com/yt-dlp/yt-dlp/rel...ownload/yt-dlp -o /usr/local/bin/yt-dlp
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: How To Cast YouTube Videos From Your Phone To Raspberry Pi Using YouTube On TV (youtube.com/tv) LXer Syndicated Linux News 0 04-16-2021 01:30 AM
LXer: Youtube-DL A Command-Line & GUI Youtube Downloader For Linux LXer Syndicated Linux News 0 07-05-2018 12:25 AM
LXer: YouTube-dlG : A Front-End GUI App For Popular YouTube-DL Video Downloader LXer Syndicated Linux News 0 09-14-2017 01:20 PM
LXer: Youtube Downloader (youtube-dl) Helper Script LXer Syndicated Linux News 0 09-28-2013 01:50 PM
LXer: Pytube - Best YouTube,Google manager, downloader and video converter for Ubuntu LXer Syndicated Linux News 0 09-16-2008 05:51 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > General

All times are GMT -5. The time now is 03:43 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration