Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Trouble getting specific videos to download #9020
Comments
|
It's not intended to be used for final URLs this way - use regular downloader on the final URL. |
I am running into speed issues when downloading from Daily motion (takes more than 22 minutes to download a 22 minute video).
My attempt to deal with this? Download multiple files at once, in the background.
To do that, I tried to get the URL's from the individual files.
Note that even though it was given a single video URL, with the authorization cookie, it winds up downloading a generic page's playlist.
The goal was to do something like
youtube-dl -g | xargs -1 youtube-dl {} &
to download each file in the background, at the same time.
(Since that did not work, the next choice, obviously, is to let it run overnight :-).