Youtube Downloader

Is downloading YouTube videos or (MP3 from it) is a big thing?

I just google and 2 out of first 3 results work.

I downloaded a couple of MP3 files from YouTube videos yesterday from:


Isn't it extremely easy? I think I am missing something.
Not sure if all videos are encoded in all the audio formats. 160 Kbps OGG and 128 Kbps AAC (m4a) are the usual ones.

YouTube music is 256 Kbps AAC.

Some online sites covert the file formats as well and present extra options.
 
Since most people have suggested easy alternatives, let me suggest some roundabout nonsense that I like.

Why don’t you use a greasyfork script? Just click to download. Or flow launcher with the plugins?

 
  • Like
Reactions: DigitalDude
I'll send you a list of plugins/hosters present on my installation of JD via DM. Can't post it here because it has a lot of you know what sites;)
DM me too. For science :cool:
Tubemate works great on mobile as it downloads files sequentially and gives you options to whatever quality or file type you want to download. Sometimes if you pause a download and on the next day you want to resume it then it might starts from the beginning which is the only drawback i found.
Is it similar to SEAL app? Any difference or one is better?
 
Last edited:
If anyone is looking to download the video+audio combo from youtube in highest quality possible, most online sites won't do this, because it requires downloading the video and audio stream separately and merging them together afterwards possibly converting also, this requires some processing.

The best way is to use yt-dlp

Download the latest release from here.
https://github.com/yt-dlp/yt-dlp/releases

The command to view the quality options for video and audio
youtube-dl -F <video_url>

Now note down the IDs for best mp4 video quality and best m4a audio quality, for example 299 for video and 140 for audio

Then use the following command to download them and it will also merge them together.
youtube-dl -f 299+140 <video_url>



For merging ffmpeg is required, it will be automatically used you just have to install.

Download the ffmpeg files from here
https://github.com/BtbN/FFmpeg-Builds/releases

Get the ffmpeg-master-latest-win64-gpl.zip
  1. Create folder in C drive ffmpeg
  2. Copy these files into it
    • ffmpeg
    • ffplay
    • ffprobe
  3. Add environment path for this folder, so yt-dlp can find and use it.