←back to thread

Brood War Korean Translations

(blog.sourcedive.net)
233 points todsacerdoti | 1 comments | | HN request time: 0.209s | source
Show context
amatecha ◴[] No.42741192[source]
If the author sees this: with yt-dlp you can download lower quality versions of videos to save bandwidth, like so:

  yt-dlp -f "bv[height<=720]" <url>
(where <url> is your URL or video ID)

That will download up to 720p quality.

replies(1): >>42741941 #
doctor_phil ◴[] No.42741941[source]
The author mentions just downloading the audio track. That's a lot less data than downloading any video at all. ;)
replies(2): >>42744653 #>>42744900 #
1. amatecha ◴[] No.42744900[source]
Oh, I missed that! In that case,

  yt-dlp -x <url>
.. or optionally to convert it to mp3 on the fly:

  yt-dlp -x --audio-format mp3 <url>
.. or doing so with also the best audio quality available:

  yt-dlp -f 'ba' -x --audio-format mp3 <url>