
[Solved] Has anyone used Youtube Downloader
- brokenman
- Site Admin
- Posts: 6105
- Joined: 27 Dec 2010, 03:50
- Distribution: Porteus v4 all desktops
- Location: Brazil
Re: [Solved] Has anyone used Youtube Downloader
Fair credit where credit is due. T'was you indeed Donald.
http://forum.porteus.org/viewtopic.php? ... ube#p32864
You probably saved my marriage. Don't know how many times I had to go through the process of saving a video with my wife.
"Noo! Don't click there, that's a cunning advertisement designed to get you to install some crapware. Click here."
http://forum.porteus.org/viewtopic.php? ... ube#p32864
You probably saved my marriage. Don't know how many times I had to go through the process of saving a video with my wife.
"Noo! Don't click there, that's a cunning advertisement designed to get you to install some crapware. Click here."
How do i become super user?
Wear your underpants on the outside and put on a cape.
Wear your underpants on the outside and put on a cape.
-
- Full of knowledge
- Posts: 2104
- Joined: 17 Jun 2013, 13:17
- Distribution: Porteus 3.2.2 XFCE 32bit
- Location: Germany
Re: [Solved] Has anyone used Youtube Downloader
Thanks guys
It's much easier now, since youtube use HTML 5, rightclick the video while playing
and choose "save video as". You get it as a webm file.

The "ss" service is still great for a quick download of videos which are blocked for german IPs.
It's much easier now, since youtube use HTML 5, rightclick the video while playing
and choose "save video as". You get it as a webm file.

The "ss" service is still great for a quick download of videos which are blocked for german IPs.
-
- Contributor
- Posts: 1955
- Joined: 09 Aug 2013, 14:25
- Distribution: Nemesis Cinnamon 64
- Location: USA
Re: [Solved] Has anyone used Youtube Downloader
I went to www.youtube.com and my screen just flicker but if I go to www.yahoo.com the screen is normal and other links seem to be normal too. Can that be fixed or not?
I just like Slackware because I think it teach you about Linux to build packages where Ubuntu is like Windows you just install programs you want.
Re: [Solved] Has anyone used Youtube Downloader
I'am using for long time youtube to mp3. There are extremely less ads and very fast.
Re: [Solved] Has anyone used Youtube Downloader
I use the similar one, but i download usually the MP4 files.Kekim wrote:I'am using for long time youtube to mp3. There are extremely less ads and very fast.
Re: [Solved] Has anyone used Youtube Downloader
But the quality i get after the download is not the HD one. How do i get that? any leads on that.
-
- Full of knowledge
- Posts: 2104
- Joined: 17 Jun 2013, 13:17
- Distribution: Porteus 3.2.2 XFCE 32bit
- Location: Germany
Re: [Solved] Has anyone used Youtube Downloader
I recommend youtube-dl if you want the HD video file or the audio file
in best quality possible.
Note:
youtube-dl needs python.
It can extract videos from many (other) sites.
use the newest version
When you have it running, check with
which (video/audio) qualities are available.
download the best option - usually f 22 - if available.
For audio only (best quality possible) use eg.
Make an mp3 later (if you need) with better encoder settings
than these "download pages" do it.
eg.
8)
in best quality possible.
Note:
youtube-dl needs python.
It can extract videos from many (other) sites.
use the newest version
When you have it running, check with
Code: Select all
youtube-dl -F www.youtube.com/xxxxxx
download the best option - usually f 22 - if available.
For audio only (best quality possible) use eg.
Code: Select all
youtube-dl -x --audio-format wav -f 22 www.youtube.com/xxxxxxx
than these "download pages" do it.
eg.
Code: Select all
lame -m s -b 256 --strictly-enforce-iso -q 2 <infile> [outfile]
-
- Full of knowledge
- Posts: 2564
- Joined: 25 Jun 2014, 15:21
- Distribution: 3.2.2 Cinnamon & KDE5
- Location: London
Re: [Solved] Has anyone used Youtube Downloader
^ If I may just add, always update after a couple of days:
And sites are many! https://rg3.github.io/youtube-dl/supportedsites.html
Code: Select all
sudo youtube-dl -U
Linux porteus 4.4.0-porteus #3 SMP PREEMPT Sat Jan 23 07:01:55 UTC 2016 i686 AMD Sempron(tm) 140 Processor AuthenticAMD GNU/Linux
NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB
NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) MemTotal: 901760 kB MemFree: 66752 kB
-
- Ronin
- Posts: 1
- Joined: 26 Sep 2022, 12:59
- Distribution: Kali Linux
[Solved] Has anyone used Youtube Downloader
Python YouTube Converter
Python YouTube Converter is a free and easy-to-use youtube video downloader for Windows. It allows users to convert YouTube video using Python in popular local video formats like MP4, MOV, M4V, AVI, and FLV, 3GP etc. with just a single click. It also supports subtitles search and downloading, trimming and cropping.
Python YouTube Converter Online is the easiest way to convert videos and other media files. It can help you download YouTube videos in different formats such as MP4, WebM, AVI etc. Its built-in preview function can help you easily see YouTube video before converting it. You can also choose a specific video from a channel and set the video quality to High Quality (HD) or a selected standard resolution for your device's screen size.
Python YouTube Converter is a free and easy-to-use youtube video downloader for Windows. It allows users to convert YouTube video using Python in popular local video formats like MP4, MOV, M4V, AVI, and FLV, 3GP etc. with just a single click. It also supports subtitles search and downloading, trimming and cropping.
Code: Select all
from pytube import YouTube
# ask for the link from user
link = input("Enter the link of YouTube video you want to download: ")
yt = YouTube(link)
# Showing details
print("Title: ", yt.title)
print("Number of views: ", yt.views)
print("Length of video: ", yt.length)
print("Rating of video: ", yt.rating)
# Getting the highest resolution possible
ys = yt.streams.get_highest_resolution()
# Starting download
print("Downloading...")
ys.download()
print("Download completed!!")