Will this get into brew?
Show HN: YouTube-dl wrapper with added features to easily manage YouTube audio
11–20 of 49 posts
Re: Show HN: YouTube-dl wrapper with added features to easily manage YouTube audio
#12Typo in the readme: yt-audo I'd make a PR but I'm not near a computer right now. This is great. I have a couple audio files I need to pull for my kid and this is gonna save me a couple steps. Thank you!
Re: Show HN: YouTube-dl wrapper with added features to easily manage YouTube audio
#13Earlier quoted context omitted.
Off the top of my head, isnt that just the -x flag?
It's a bit more than that. Eg: One can configure their own CLI arguments to keep track of particular playlist(s). $ yt-audio --your-arg1 --your-arg2 This will sync playlist/audios configured against these arguments.
Re: Show HN: YouTube-dl wrapper with added features to easily manage YouTube audio
#14YouTube-dl demolishes 100 pain points of using the modern web This wrapper gets rid of the only pain point in using YouTube-dl which was having to google every time you wanted just the audio. Great work
Off the top of my head, isnt that just the -x flag?
Re: Show HN: YouTube-dl wrapper with added features to easily manage YouTube audio
#15Re: Show HN: YouTube-dl wrapper with added features to easily manage YouTube audio
#16Earlier quoted context omitted.
Off the top of my head, isnt that just the -x flag?
I have a file under ~/bin called youtube-mp3 which has this one-liner: exec $HOME/d/youtube-dl/youtube-dl -t -x --audio-format=mp3 "$@" (Edit: I'm sure this script does a lot more, but making ytdl download only the audio is fairly simple. Note the above command converts the file to mp3 which some people may not want to do because it's lossy.)
Re: Show HN: YouTube-dl wrapper with added features to easily manage YouTube audio
#17Earlier quoted context omitted.
Off the top of my head, isnt that just the -x flag?
I’m not near a computer but I was persuaded I have used youtube-dl -f mp3 https://.. . before.
OTOH, if you specify a format directly without -x, it may not extract the audio alone. For example if you wanted M4A, you'd specify -x on top of specifying the format explicitly.
edit: as krick points out though, it doesn’t seem videos generally have an mp3 format, at least on YouTube.
Re: Show HN: YouTube-dl wrapper with added features to easily manage YouTube audio
#18youtube-dl is the only thing that makes the modern web actually usable. I ended up writing a bot that runs on a docker scheduled task and looks at trello. I can drop a youtube link on the board and it will grab the audio. Great for when I hear a song somewhere that I want to add to my phone later.
Re: Show HN: YouTube-dl wrapper with added features to easily manage YouTube audio
#19Cannot understand what exactly is that. I have used a simple alias called (unsurprisingly) yt-audio for years, which is youtube-dl with appropriate flags (-x, --audio-quality, --download-archive, -o, etc.), and this seems to be exactly that, only written in python for some reason.
Re: Show HN: YouTube-dl wrapper with added features to easily manage YouTube audio
#20Earlier quoted context omitted.
Off the top of my head, isnt that just the -x flag?
I’m not near a computer but I was persuaded I have used youtube-dl -f mp3 https://.. . before.