Open Source YouTube to MP3 Downloader
21–30 of 92 posts
Re: Open Source YouTube to MP3 Downloader
#221: https://gist.github.com/entropie/d265e94136b9777cc6b3190189b...
Re: Open Source YouTube to MP3 Downloader
#23I use a telgram bot (controlled by node-red) that sends the URLs to a script [1] that uses a FIFO to download them one by one via yt-dlp. If the sender ID is from my mum, only the audio track is saved and made available to her via jellyfin. It has been working almost too well for 2 years. She has downloaded almost 1TB of audiobooks (all from youtube). 1: https://gist.github.com/entropie/d265e94136b9777cc6b3190189b...
Re: Open Source YouTube to MP3 Downloader
#24for those of us comfy with the console: yt-dlp -x [YouTube or other url]
My usual is:
yt-dlp -f 140 [url]
The -f 140 maps to the m4a format.Re: Open Source YouTube to MP3 Downloader
#25https://github.com/yt-dlp/yt-dlp is a well-maintained public domain alternative.
Re: Open Source YouTube to MP3 Downloader
#26Re: Open Source YouTube to MP3 Downloader
#27Re: Open Source YouTube to MP3 Downloader
#28This seems to be a pretty straightforward GUI wrapper around https://github.com/Tyrrrz/YoutubeExplode and https://github.com/AydinAdn/MediaToolkit (see https://github.com/PackJC/YoutubeToMP3/blob/main/Form1.cs ). Note the (admirable but non-OSI) terms of the former library if using any outputs from this software. https://github.com/yt-dlp/yt-dlp is a well-maintained public domain alternative.
Re: Open Source YouTube to MP3 Downloader
#29Earlier quoted context omitted.
Why, objectively?
1) MP3 is dated. Modern codecs give better quality at smaller filesizes. 2) Any lossy re-encoding step degrades quality. You'll get the highest quality by saving the stream direct from the server and skipping the re-encode step. Just pass --extract-audio and skip all those other arguments.
Re: Open Source YouTube to MP3 Downloader
#30for those of us comfy with the console: yt-dlp -x [YouTube or other url]