←back to thread

798 points bertman | 2 comments | | HN request time: 0.408s | source
Show context
bdz ◴[] No.45899768[source]
I use yt-dlp (and back then youtube-dl) all the time to archive my liked videos. Started back in around 2010, now I have tens of thousands of videos saved. Storage is cheap and a huge percent of them are not available anymore on the site.

I also save temporary videos removed after a time for example NHK honbasho sumo highlights which are only available for a month or so then they permanently remove them.

replies(12): >>45899869 #>>45899943 #>>45900007 #>>45900140 #>>45900275 #>>45900581 #>>45900630 #>>45901958 #>>45902752 #>>45902786 #>>45903073 #>>45905245 #
moralestapia ◴[] No.45899869[source]
Same here and my motivation was that some of my liked videos were randomly removed and it's pretty cool music I wanted to keep forever.

I made another script that adds the video thumbnail as album art and somehow tries to put the proper ID3 tags, it works like 90% of the time which is good enough for me.

Then I made another script that syncs it to my phone when I connect it.

So now I have unlimited music in my phone and I only have to click on "Like" to add more.

And yet, none of Google's 900k TOC genius engineers have thought of this as a feature ...

replies(3): >>45900050 #>>45900488 #>>45900660 #
1. FergusArgyll ◴[] No.45900488[source]
I have a script that calls out to a small llm

  artist = llm_call("return the name of the artist based on this title", title)
etc. with some stripping of newlines etc. It works well! they can often infer the correct answer even if it's not present in the title
replies(1): >>45900626 #
2. moralestapia ◴[] No.45900626[source]
Hey ^^, that's a great idea.

I wrote all of this stuff pre-LLMs, never occurred to me until now, thanks!