TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

YouTube-dl: Open-source YouTube downloader

989 pointsby h43k3rabout 9 years ago

63 comments

guycookabout 9 years ago
The tragedy of this software (and many like it) is that despite working exactly as advertised, easily and with a lot of features, because it&#x27;s a quiet open source project without any SEO rigging it will never appear in page 1 of any searches by laymen trying to download videos (&quot;save youtube to hard drive&quot;, &quot;download youtube videos&quot; et al).<p>The amount of crapware I&#x27;ve had to remove from family member&#x27;s PCs just because they wanted to save a video is ridiculous.
评论 #11453999 未加载
评论 #11453119 未加载
评论 #11453852 未加载
评论 #11456705 未加载
评论 #11453086 未加载
评论 #11456825 未加载
评论 #11453587 未加载
评论 #11453308 未加载
评论 #11453788 未加载
评论 #11453481 未加载
评论 #11453094 未加载
评论 #11454512 未加载
评论 #11454900 未加载
评论 #11453698 未加载
评论 #11454524 未加载
评论 #11453531 未加载
评论 #11453117 未加载
评论 #11453856 未加载
FiloSottileabout 9 years ago
Nostalgia time. Even though I&#x27;m not actively involved anymore, youtube-dl has been the first OSS project I seriously contributed to, and strangers still thank me at conferences for it.<p>I owe a lot to the maintainers (hey, phihag!) for tolerating and trusting a much younger version of me :)<p>I still remember the emotion of getting this merged: <a href="https:&#x2F;&#x2F;github.com&#x2F;rg3&#x2F;youtube-dl&#x2F;pull&#x2F;342" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;rg3&#x2F;youtube-dl&#x2F;pull&#x2F;342</a><p>It&#x27;s also one of the most impressive community efforts I&#x27;ve seen, with just about anyone contributing support for new sites and fixing broken ones: <a href="https:&#x2F;&#x2F;github.com&#x2F;rg3&#x2F;youtube-dl&#x2F;graphs&#x2F;contributors" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;rg3&#x2F;youtube-dl&#x2F;graphs&#x2F;contributors</a> (notice how the GH interface is limited to 100 contributors, and #100 still has 3 commits in the tree)
评论 #11455579 未加载
jtokophabout 9 years ago
Some of the things that make this the &#x27;ultimate&#x27;:<p>- Supports hundreds of services, not just youtube [0]<p>- Allows you to extract audio in multiple formats<p>- Download entire playlists (and general batch support)<p>- Configure video&#x2F;audio quality<p>- Extract&#x2F;build metadata<p>- Cross platform<p>[0] <a href="https:&#x2F;&#x2F;rg3.github.io&#x2F;youtube-dl&#x2F;supportedsites.html" rel="nofollow">https:&#x2F;&#x2F;rg3.github.io&#x2F;youtube-dl&#x2F;supportedsites.html</a>
评论 #11452985 未加载
评论 #11453532 未加载
评论 #11453138 未加载
评论 #11457371 未加载
评论 #11453014 未加载
评论 #11453908 未加载
评论 #11455045 未加载
评论 #11452960 未加载
Kristine1975about 9 years ago
I&#x27;ve been using it for years now and it&#x27;s great. Not only for Youtube videos, but also for a lot of other video hosters, up to and including TV stations such as the German ZDF or the French Arte.<p>To fully use its features you should install ffmpeg though. Youtube-dl will automatically use it if it&#x27;s in the PATH, and then can download Youtube videos with higher frame rates and resolutions (they store video and audio in separate files, and ffmpeg is used to mux both together). ffmpeg is also required to download from some streaming video hosters.<p>For me it&#x27;s essentially:<p><pre><code> youtube-dl -F &#x27;&lt;url&gt;&#x27; </code></pre> to get the list of available video and audio formats, followed by<p><pre><code> youtube-dl -f &lt;video format&gt;+&lt;audio format&gt; &#x27;&lt;url&gt;&#x27; </code></pre> and then wait for the download to complete. And<p><pre><code> youtube-dl -U </code></pre> to self-update youtube-dl (because it gets updated just about every day).
评论 #11453179 未加载
评论 #11453205 未加载
评论 #11452961 未加载
评论 #11452952 未加载
评论 #11453065 未加载
评论 #11452933 未加载
SG-about 9 years ago
Here&#x27;s something i&#x27;ve added to my .bashrc that lets me type in simply &#x27;play &lt;some song name&gt;&#x27; using youtube-dl and mplayer (I forget where I found this gem, and sorry for weird formatting, won):<p><pre><code> function play { youtube-dl --default-search=ytsearch: \ --youtube-skip-dash-manifest \ --output=&quot;${TMPDIR:-&#x2F;tmp&#x2F;}%(title)-s%(id)s.%(ext)s&quot; \ --restrict-filenames \ --format=&quot;bestaudio[ext!=webm]&quot; \ --exec=mplayer -vvv &quot;$*&quot; } </code></pre> play rick astley never gonna give you up
评论 #11453664 未加载
评论 #11453480 未加载
评论 #11453553 未加载
评论 #11453637 未加载
评论 #11453487 未加载
评论 #11457541 未加载
sdk77about 9 years ago
I&#x27;m in China and streaming youtube videos is mostly out of the question, due to the very unpredictable and usually too slow nature of connectivity (I gave up on VPN long time ago and use a number of strategically placed cheap virtual servers). Over the years, youtube-dl has been a godsend. I ssh into one of my servers, download the video and then rsync it over to my laptop. Most of the time I don&#x27;t really need to have the video stored locally - if I was at home I&#x27;d just stream it again - but for some niche applications like mine it&#x27;s next to nothing. The buffering built in to youtube itself too often just stops or throws me into &#x27;an error has occurred&#x27;.
评论 #11454458 未加载
ryuuchinabout 9 years ago
Another great thing about youtube-dl is its integration in mpv[1]. On Windows as long as you have both mpv.exe[2] and youtube-dl.exe in the same folder you can use it to play pretty much whatever youtube-dl supports. This should also work on *nix&#x2F;Mac as well just check your distro&#x27;s repo&#x27;s or wherever you look for stuff like that on Mac (can you tell I&#x27;ve not used Mac stuff ever).<p>I rather like using it for things like twitch streams since I can bypass having to use Flash and get a higher quality renderer in the process (with things like high quality scaling[3] and debanding[4]). And it goes without saying that it&#x27;s nice for youtube stuff as well because of the aforementioned benefits. Basically it makes stuff look even better than if you watched it the browser, and I like that.<p>[1] <a href="https:&#x2F;&#x2F;mpv.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;mpv.io&#x2F;</a><p>[2] <a href="https:&#x2F;&#x2F;mpv.srsfckn.biz&#x2F;" rel="nofollow">https:&#x2F;&#x2F;mpv.srsfckn.biz&#x2F;</a> (official Windows builds)<p>[3] <a href="https:&#x2F;&#x2F;mpv.io&#x2F;manual&#x2F;master&#x2F;#video-output-drivers-opengl" rel="nofollow">https:&#x2F;&#x2F;mpv.io&#x2F;manual&#x2F;master&#x2F;#video-output-drivers-opengl</a> mpv supports ewa_lanczossharp (aka jinc) for scaling among others<p>[4] Also a huge fan of the debanding which can be left on all the time
dansoabout 9 years ago
Mostly OT: A friend of mine posted this article from his local newspaper as an example of how slow news is in his town:<p><a href="http:&#x2F;&#x2F;www.ottumwacourier.com&#x2F;news&#x2F;local_news&#x2F;what-is-a-gif&#x2F;article_c1d84944-e92a-11e5-a095-eb219cc6cd71.html" rel="nofollow">http:&#x2F;&#x2F;www.ottumwacourier.com&#x2F;news&#x2F;local_news&#x2F;what-is-a-gif&#x2F;...</a><p>&gt; <i>What is a GIF?</i><p>&gt; <i>OTTUMWA — Chances are if you have been on the Internet lately, you have encountered a GIF...In honor of National Teen Tech Week, the Ottumwa Public Library offered a session on GIF making for local teens Saturday afternoon.</i><p>OK, not a traditional article topic for a newspaper, but the library described seems to be very much on the ball, teaching teens how to use youtube-dl to download movies:<p>&gt; <i>He walked each of the teens through the steps required for making GIFs by using movie trailers found on YouTube. He then had the kids copy the web address and use the program youtube-dl to download the video. OPL also provided flash drives for each person so they could access the program at home.</i>
评论 #11452986 未加载
评论 #11506711 未加载
extrapolarabout 9 years ago
Note that it is against YouTube&#x27;s ToS to download videos: <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;static?template=terms" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;static?template=terms</a><p>&quot;You may access Content for your information and personal use solely as intended through the provided functionality of the Service and as permitted under these Terms of Service. You shall not download any Content unless you see a “download” or similar link displayed by YouTube on the Service for that Content.&quot;
评论 #11453226 未加载
评论 #11453280 未加载
评论 #11453188 未加载
评论 #11453216 未加载
评论 #11455195 未加载
评论 #11453146 未加载
评论 #11458407 未加载
agumonkeyabout 9 years ago
The work-horse. If the author&#x2F;maintainers are here, thanks a lot. With an old laptop I need mpv&#x2F;mplayer to be able to play videos without overheating. youtube-dl is my youtube backend, one of the most used commands on my terminal.
mundanevoiceabout 9 years ago
This is a great project. I have been using it for more than 4 years and it has never disappointed me ever. It picks up from the interrupted download, can convert in any format you prefer and get only audio out if you will.<p>Great work guys! Thanks for creating such an awesome piece of software.
评论 #11455455 未加载
leni536about 9 years ago
Note that mpv integrates well with youtube-dl. With an &quot;open with&quot; like addon it&#x27;s relly handy especially on sites that are still stuck on flash.
mtrnabout 9 years ago
youtube-dl is great. It belongs to a class of software, that could not exists without a place like github (or any platform, that makes it easy to contribute). Many developers (here: 403) sharing the burden of keeping the scrapers up-to-date, which would be a dull and mind-numbing task for a single person or small group of people.<p>Other wonderful projects in this category would be homebrew[1], wiki*, OSM, ...
lochlainnabout 9 years ago
Nothing but positive experiences with youtube-dl, invaluable piece of software IMO.<p>For people interested in tools like this, or for people who want to just watch videos without downloading, I would also recommend Livestreamer. I use it to watch Crunchyroll streams, and I avoid all the strange issues that come up with their terrible player. No more skipping to random sections of the episode. <a href="https:&#x2F;&#x2F;github.com&#x2F;chrippa&#x2F;livestreamer" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;chrippa&#x2F;livestreamer</a>
corradioabout 9 years ago
I actually made a small script to download offline youtube videos using youtube-dl.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;corradio&#x2F;watchlater" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;corradio&#x2F;watchlater</a> <a href="https:&#x2F;&#x2F;oliviercorradi.wordpress.com&#x2F;2013&#x2F;11&#x2F;19&#x2F;3&#x2F;" rel="nofollow">https:&#x2F;&#x2F;oliviercorradi.wordpress.com&#x2F;2013&#x2F;11&#x2F;19&#x2F;3&#x2F;</a>
joeyspnabout 9 years ago
Download mp3 with the maximum possible quality.<p>$ youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 --output &quot;%(title)s.%(ext)s&quot; &lt;URL&gt;
评论 #11454116 未加载
rb2k_about 9 years ago
Huge props to the team working on this.<p>I once maintained something similar in Ruby (<a href="https:&#x2F;&#x2F;github.com&#x2F;rb2k&#x2F;viddl-rb" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;rb2k&#x2F;viddl-rb</a>), and the amount of changes necessary just to keep a hand full of plugins up-to-date is crazy.
bfungabout 9 years ago
If you use mac, it&#x27;s available on homebrew. even easier.
givanabout 9 years ago
I use vlctube <a href="https:&#x2F;&#x2F;greasyfork.org&#x2F;en&#x2F;scripts&#x2F;1783-vlctube" rel="nofollow">https:&#x2F;&#x2F;greasyfork.org&#x2F;en&#x2F;scripts&#x2F;1783-vlctube</a> to not only download youtube videos but to also use vlc as default player, there is a huge performance boost, I no longer hear my cpu fan when playing a youtube video.
ameliusabout 9 years ago
It would be nice if there was a &quot;shadow&quot; version of youtube on bittorrent. So instead of using youtube-dl, you could just pull the file from bittorrent. Besides this being faster in most cases, it would also mean that a big part of our cultural heritage is no longer locked inside google&#x27;s silo.
ismyrnowabout 9 years ago
There&#x27;s an app called Free Download Manager which has this feature. I suspect it may be using youtube-dl under the hood, since the functionality looks similar (with a GUI, of course). The app allows you to copy&#x2F;paste youtube urls and it parses the page for available downloads (audio and video). I use it regularly for putting technical talks onto my phone to watch or listen to on my commute.<p>The app is very easy to use, and one of the few I would recommend to a non-technical person for the features it has.<p>I know the name makes it sound like spyware, but it&#x27;s the most lightweight tool I&#x27;ve found for both this and the occasional torrent.<p><a href="http:&#x2F;&#x2F;www.freedownloadmanager.org&#x2F;" rel="nofollow">http:&#x2F;&#x2F;www.freedownloadmanager.org&#x2F;</a>
lottinabout 9 years ago
The only thing that irritates me about youtube-dl is that by default it will try download audio and video tracks separately and then remux them on your computer. While it&#x27;s a cool feature, I don&#x27;t think this is what most people want 99% of the time.
评论 #11453495 未加载
评论 #11454239 未加载
评论 #11453366 未加载
Walkmanabout 9 years ago
Here is a script I use to download a lot of videos in a queue with it: <a href="https:&#x2F;&#x2F;github.com&#x2F;kissgyorgy&#x2F;interactive-youtube-dl" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;kissgyorgy&#x2F;interactive-youtube-dl</a>
k4rtikabout 9 years ago
User for &gt;4 years. Absolutely love the nifty little tool. But I hated opening up a terminal each time I wanted to initiate a download.<p>For PopClip[1] users on Mac, I made a little YouTube-dl extension[2] which lets you initiate the download just by selecting the video URL (best when done from browser&#x27;s address bar) and clicking a button. Been using it as my primary ytdl client for past 5 months now.<p>[1]: <a href="https:&#x2F;&#x2F;pilotmoon.com&#x2F;popclip&#x2F;" rel="nofollow">https:&#x2F;&#x2F;pilotmoon.com&#x2F;popclip&#x2F;</a><p>[2]: <a href="https:&#x2F;&#x2F;github.com&#x2F;k4rtik&#x2F;popclip-ytdl" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;k4rtik&#x2F;popclip-ytdl</a>
评论 #11454639 未加载
joshstrangeabout 9 years ago
I&#x27;ve used this tool a ton of times and it is a standard install on my multimedia fetching VM. I really want to take the time to allow for a Sonarr[0]-for-youtube (and other supported sites) app that uses this on the backend. For example I love CGPGrey but don&#x27;t want to constantly be downloading new videos (But I do want to watch them through my Plex setup). Some channels have convenient playlists I can download (and keep downloading) but I normally want to change the naming to a convention I specificy.<p>[0] <a href="https:&#x2F;&#x2F;sonarr.tv&#x2F;" rel="nofollow">https:&#x2F;&#x2F;sonarr.tv&#x2F;</a>
MiguelVieiraabout 9 years ago
Honest question: why would you want to download a video from YouTube? The main use case I can think of is you want to watch videos offline on a mobile device but don&#x27;t want to pay for a YouTube Red subscription.
评论 #11454690 未加载
评论 #11458243 未加载
评论 #11454698 未加载
评论 #11455633 未加载
评论 #11457171 未加载
评论 #11457089 未加载
评论 #11455115 未加载
milgeabout 9 years ago
Recently, I wrote a chrome plugin that saves information of all of the songs I listen to on youtube to amazon since youtube&#x27;s history API is shit. Theoretically, I could write a nightly job that runs YouTube-dl to turn all of those videos into MP3s. Taking it even further, I could run a nightly SyncMe job on my phone to copy the MP3s locally. A setup like this would be good for people with limited phone bandwidth. Imagine not having to search out MP3s anymore. Is it still considered pirating if a robot does it?
评论 #11454395 未加载
评论 #11454354 未加载
interfixusabout 9 years ago
I have a sort of atavistic thing against streaming. I download things, and then I watch.<p>This is a really nifty tool, though I must say that Flashgot on Firefox does the job nicely for me, 99% of the time.
plugabout 9 years ago
What a funny coincidence - I just discovered and used this a few hours ago. I wanted to rip some YT audio from (mostly) old records that I have that are not on Spotify etc.<p>I looked at some browser plugins but I wasn&#x27;t really impressed. This, on the other hand, was a great discovery. Really configurable and well documented.<p>Assuming you have `ffmpeg` installed just run:<p>`youtube-dl --extract-audio --audio-format mp3 $URL`<p>and you&#x27;re done! I expect my phone will be packed of bizarre prog&#x2F;jazz before the end of the weekend :D
评论 #11455144 未加载
bradlysabout 9 years ago
If you want a button built into youtube&#x27;s webpages in Chrome this will do too. I believe there are other projects that do similar things but many aim at doing much more (mine is solely for the little download button which offers all the video&#x2F;audio formats that youtube-dl does).<p><a href="https:&#x2F;&#x2F;github.com&#x2F;bradlys&#x2F;monochromatic-panda" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;bradlys&#x2F;monochromatic-panda</a>
SBartelsabout 9 years ago
I really don&#x27;t like how others profit from the work of the youtube-dl developers. The developers should build their own client-facing websites and apps.
yasoobabout 9 years ago
This is a simple GUI which I made for this script: github.com&#x2F;yasoob&#x2F;youtube-dl-gui. I hope you guys would like it :) All bug reports are welcome.
nxzeroabout 9 years ago
YouTube needs a &quot;download&quot; button; love this code, it works like magic, but for the average user the real answer is that YouTube needs a way to download a video; otherwise, YouTube is just enabling all the 3rd party sites that exploit YouTube making it easy to &quot;hack&quot; a way to download the files, but hard for the average user who ends up getting malware to download the video.
pieter_mjabout 9 years ago
previous discussion : <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=8647943" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=8647943</a><p>I used this (on windows) to easily convert&#x2F;resize videos i had saved earlier using a file:&#x2F;&#x2F;&#x2F; url, but this possibility has been removed since a few months because of the obvious security hole (in a linux context)
Jarwinabout 9 years ago
Not just YouTube, over 200 websites including daily motion, vimeo and, well were all adults here so I&#x27;m just gonna say it,pornhub. Supports authentication. And you can download with any format using -f flag. Also I&#x27;m not sure about that, but I thing you can use apt-get to download it as well.
adrianbdabout 9 years ago
I often use mps-youtube, which I believe is based on youtube-dl and works great to listen to music off youtube from the terminal.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;mps-youtube&#x2F;mps-youtube" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;mps-youtube&#x2F;mps-youtube</a>
ontouchstartabout 9 years ago
I have a docker image to run it on OSX, haven&#x27;t tested on Windows yet.<p><a href="https:&#x2F;&#x2F;hub.docker.com&#x2F;r&#x2F;ontouchstart&#x2F;docker-youtube-dl&#x2F;" rel="nofollow">https:&#x2F;&#x2F;hub.docker.com&#x2F;r&#x2F;ontouchstart&#x2F;docker-youtube-dl&#x2F;</a>
评论 #11454621 未加载
评论 #11458543 未加载
akagetsu01about 9 years ago
I made something like that over Christmas..it&#x27;s pretty shit but it works to download youtube videos as mp3 :-&#x2F; <a href="http:&#x2F;&#x2F;akagetsu.com&#x2F;youtube&#x2F;" rel="nofollow">http:&#x2F;&#x2F;akagetsu.com&#x2F;youtube&#x2F;</a>
评论 #11456775 未加载
tachionabout 9 years ago
There&#x27;s a web app[0] that uses youtube-dl to provide non-cli functionality. Does anyone knows if there&#x27;s similar tool&#x2F;lib in Go?<p>[0] <a href="http:&#x2F;&#x2F;pullz.in" rel="nofollow">http:&#x2F;&#x2F;pullz.in</a>
评论 #11453748 未加载
评论 #11453536 未加载
aryamaanabout 9 years ago
Not exactly related to this but I remember someone wrote a script which lets you download any song (by name, artist or some phrase from the song).<p>It uses youtube api to search the song and then download it using youtube-dl.
评论 #11455919 未加载
aguynamedbenabout 9 years ago
Been using it for a while. Great for hacks, downloading 360 VR videos, downloading all videos for a channel.<p>Was happy to see it here, it&#x27;s nothing new, just a great tool, great job of surfacing it HN!
marempabout 9 years ago
Why is this so popular last 24h? I am using it for about a year and never saw this much hype. Is there any new feature or is it just that someone rediscovered it and it went viral?
jaimehrubiksabout 9 years ago
I built a gui&#x2F;music downloader using this last year. Called musicBoo in case you want to check it out. Its multiplatform, having problems in deployment though (in java swing)
em3rgent0rdrabout 9 years ago
Initial commit is from 2008. I think title should be updated to reflect the initial year, since this is not a new project. I&#x27;ve been personally using this for many years.
评论 #11455208 未加载
justinwrabout 9 years ago
Damnit! I hate it when people advertise my favorite software.
diegorbaqueroabout 9 years ago
I used this years ago to create a Youtube2MP3 site. This tool is great. Nice to see that it&#x27;s still alive and maintained
评论 #11453550 未加载
konartabout 9 years ago
I&#x27;m amazed many people do not know about it, considering it is installed via brew together with mpv, lol.
noir_lordabout 9 years ago
youtube-dl -f 141 &lt;link&gt;<p>Gives you decent quality audio file from pretty much any video, you can even feed it a playlist.
hatsunearuabout 9 years ago
fun fact: mpv couples youtube-dl to itself and can view youtube videos simply from the command line.<p>example:<p>mpv &quot;<a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=a3Ey4YChtEU&quot;" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=a3Ey4YChtEU&quot;</a><p>(you need quotes because most shells will try to glob match)
MrBraabout 9 years ago
Time to revive an old debate: is downloading video or audio from YouTube for personal use illegal?
CoelacanthsKillabout 9 years ago
I&#x27;ve been using this for years to rip ~256k mp3&#x27;s off youtube.
goldenrulesabout 9 years ago
i love youtube-dl. i&#x27;ve been interested in doing the same with soundcloud, but i have no idea how to go about learning how their streaming works. any advice for where to start?
评论 #11453939 未加载
评论 #11454622 未加载
评论 #11454024 未加载
评论 #11454549 未加载
sig_chld_mikeabout 9 years ago
what idiots. there isn&#x27;t one complete example of how to use the project with a url from Youtube. Instead we have to decrypt what the hell the documentation means.
评论 #11456861 未加载
jayadeeptpabout 9 years ago
Isn&#x27;t it against the ToS of Youtube to download videos?
评论 #11454800 未加载
GizaDogabout 9 years ago
Great stuff! I wish I can program stuff like this.
techaddict009about 9 years ago
Isn&#x27;t it illegal to download youtube videos?
评论 #11455933 未加载
jisagigiabout 9 years ago
Any thoughts on livestreamer vs Youtube-dl
alvernabout 9 years ago
So excited to try this out tonight
pknerdabout 9 years ago
Works like charm. Only if laymen can be convinced that CLI is far easier than GUI.
fordarnoldabout 9 years ago
Nice simple tool
rasz_plabout 9 years ago
The best use case for youtube-dl is extracting direct mp4 link and piping it to mplayer<p>youtube-dl -g url | mplayer
评论 #11457224 未加载
draugadrottenabout 9 years ago
&gt; It&#x27;s a bit worrying how many people run to defend corporation profits by default.<p>Surely you are keen to make a profit yourself with your unicorn startup idea, dear unique snowflake.
评论 #11453585 未加载
评论 #11453584 未加载
personjerryabout 9 years ago
I feel like &quot;ultimate&quot; in the title is misleading.
评论 #11452963 未加载