this post was submitted on 08 Jun 2025
211 points (98.2% liked)

Linux

55025 readers
1050 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 6 years ago
MODERATORS
 

Hi Lemmy!

This post is a way for me to announce one of my apps that I made for my personal usage.

Azul box

It is a front end for yt-dlp and ffmpeg. It isn't just a yt-dlp downloader; it's more like a utility app that does anything that I need. The "special" part about this software is probably the ability to download YouTube subtitles and then embed them into the audio file as synced lyrics. Well, that is the only "unique" thing about it. As I’m still quite new to programming, there may be some bugs, and I appreciate your understanding. I’m also learning how to package it as a deb/rpm and plan to dedicate time to this during the summer. For now, the only way to download it will be to build from source with the bash install script in my repo.

If you have some time to try the app, I would love to hear your thoughts. Thank you for taking the time to read this! :)

all 34 comments
sorted by: hot top controversial new old
[–] figjam@midwest.social 2 points 3 hours ago (1 children)

Does Yt-dlp still work with YouTube?

[–] Kiuyn@lemmy.ml 1 points 1 hour ago

Yes, it work perfectly for youtube. In fact, it is the main way I download and consume music now days!

[–] Tapeykatt@lemmy.ml 2 points 4 hours ago (1 children)
[–] Kiuyn@lemmy.ml 1 points 1 hour ago
[–] cheese_greater@lemmy.world 2 points 4 hours ago* (last edited 4 hours ago) (1 children)

Hey, while we have you, can I ask what is the best way to join or merge all the downloaded videos still using the command line. Like do I cd to the download directory and have it do something, something somethint ffmpeg?

Also, is downloading the mp4 significantly different in sound quality than bestaudio (which tends to output a webm rather than mp4)?

[–] Kiuyn@lemmy.ml 2 points 1 hour ago (1 children)

For the first question, I assume that you want to put all video downloaded into one big video in CLI. I guess you can do something like this with ffmpeg: ffmpeg -i "concat:input1|input2|input3|etc" -codec copy output.mkv If you want to work it out with yt-dlp you can try this:

yt-dlp "a link" Assuming you get mp4 format ls -1 *.mp4 > file_list.txt then ffmpeg -safe 0 -f concat -i list.txt -c copy output.mp4

Also, is downloading the mp4 significantly different in sound quality than bestaudio (which tends to output a webm rather than mp4)?

For your second question, I am not sure my self to be honest. I never actually look at it. That is why for my app this is the arg I use to get best video and also best audio: -f "bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best"

You can probably play a bit more with the format, if you feel like it.

Hope this help!

[–] cheese_greater@lemmy.world 46 points 1 day ago (2 children)

I could never stop singing yt-dlp's praises. Absolutely life-changing software

[–] tux0r@feddit.org 23 points 1 day ago* (last edited 1 day ago) (5 children)

I wish my own alternative would get similar praises, because it was there when YouTube-dl wasn’t. I’m really bad at marketing, it seems.

[–] webghost0101@sopuli.xyz 30 points 1 day ago

Dont give up on it! Its very feasible that yt starts attacking yt-dlp. Invidious is already obfuscated. The more alternatives the better.

[–] can@sh.itjust.works 24 points 1 day ago (1 children)
[–] tux0r@feddit.org 4 points 12 hours ago

Contributions which improve the documentation are appreciated.

[–] freijon 7 points 19 hours ago

294 Github stars, I guess your marketing is fine

[–] cheese_greater@lemmy.world 6 points 1 day ago* (last edited 5 hours ago) (1 children)

Some love to you too

{PRAISES!}

[–] tux0r@feddit.org 2 points 13 hours ago (1 children)
[–] cheese_greater@lemmy.world 2 points 5 hours ago* (last edited 5 hours ago) (1 children)

I make a point of always being on the lookout for different versions or offerings exactly because its so debillitating to me when I lose the use of a tool I rely on. Keep on fighting the good fight. I remember how much it sucked when I ProTube stopped working and Ivory stopped working, those were both bad times for me

[–] tux0r@feddit.org 2 points 4 hours ago (1 children)

It’s still rather hard to maintain a software that can download from as many sources as possible on my own. It’s often a game of cat&mouse, sadly.

[–] cheese_greater@lemmy.world 1 points 4 hours ago

No no, thats not what I meant. I mean just that I usually keep my eyes peeled for apps that do the same or a similar function as a redundancy backup plan type thing. Like I collect apps that do the same thing but maybe have slightly different or novel implementations cuz I dont want to be caught with my pants down when they wise up to whatever way I was getting the needful done

Lots of respect for what you're doing and it must be very difficult to try and ensure that level of compat. Hope you're kind to yourself about it all, thats alot, yo.

[–] Kiuyn@lemmy.ml 6 points 1 day ago (1 children)

It seem to be really interesting! I will give it a try.

[–] tux0r@feddit.org 2 points 13 hours ago

Feedback and patches welcome!

[–] Kiuyn@lemmy.ml 4 points 1 day ago

True! yt-dlp is the best.

[–] N0x0n@lemmy.ml 12 points 20 hours ago* (last edited 17 hours ago) (2 children)

Cool stuff, thank you for sharing your project with the community ! It's very cool and useful for people who just want a set and forget situation !

I stoped using yt-dlp frontends the moment I saw youtube actually serving upscaled opus media files (very visible line on a spectrogram). Also their metadata is totally fucked-up and not very well organized and full of shit (comments with huge spaces and non useful metadata...).

Sure, the metadata part is easily fixable with Picard MusicBrainz, but the quality downgrade was a huge no for me. Nowadays, I use nicotine, rutracker and private trackers to download FLAC quality files and transcode them to opus 192k to serve them in my Navidrome library with a well curated metadata structure !

Yes it takes way more time and some dedication but it's worth it :) specially If you are some kind of perfectionist and like everything neatly organized ! 😁

More power to you for keeping the opensource community thriving !! Thank you !

[–] Kiuyn@lemmy.ml 2 points 14 hours ago

Thanks for the nice comment! I'm actually planning to maybe integrate the Picard metadata into my music downloader. It is still a plan though. I have no working prototype yet.

[–] FrameXX@discuss.tchncs.de 2 points 19 hours ago* (last edited 16 hours ago) (1 children)

I stoped using yt-dlp frontends the moment I saw youtube actually serving upscaled opus media files (very visible line on a spectrogram). Also their metadata is totally fucked-up and not very well organized and full of shit (comments with huge spaces and non useful metadata...).

Wow really? Are you sure it applies to all audio files? YouTube gathers music records from different companies so they could be of varying quality. To me the opus quality from YouTube was always decent and personally I cannot hear any compression in the audio. The metada is not perfect, but I usually use some tag editor to complete what's missing. YTDLnis on Android does a great job of scraping as much usable metada from YouTube Music as possible.

[–] N0x0n@lemmy.ml 2 points 17 hours ago* (last edited 16 hours ago)

Not sure if every audio file is upscaled, however I had a few files who clearly were 128kbs mp3 upscaled to ~192kbs opus !

personally I cannot hear any compression in the audio.

100% agree on that xD !! However, I'm some kind of strange audio freak hoarder. If the spectogram of an audio doesn't reflect my standards (not upsacles audio files...) I won't keep/archive it !

Do note that I didn't used a paid YouTube account... Maybe they don't serve HQ audio files to free users? Dunno, but after some digging into the spectograms I was not happy seeing how bad they looked !

[–] NotProLemmy@lemmy.ml 13 points 1 day ago (1 children)

Will check this out, thanks.

[–] Kiuyn@lemmy.ml 4 points 1 day ago

I hope you will have a fun time with it!

[–] Korronald@lemmy.world 11 points 1 day ago (1 children)

Very interesting! Sounds useful.

[–] Kiuyn@lemmy.ml 4 points 1 day ago
[–] bimbimboy@lemm.ee 8 points 1 day ago (1 children)

cool stuff, man. Thanks for sharing

[–] Kiuyn@lemmy.ml 2 points 1 day ago

Thank you!!!

[–] jagged_circle@feddit.nl 6 points 1 day ago (2 children)

Please log in to prove you're not a bot

[–] Reddfugee42@lemmy.world 5 points 22 hours ago

I can't help that I was born a bot, you bigot.