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.
Faster Downloads #1498
Faster Downloads #1498
Comments
|
If the server is slow to send out packets, then your PC will be slow to recieve them. There's no way I know of around that. |
|
@wyatt8740 You are assuming that the bottleneck is the local connection. If it is not, using multiple connections in parallel can help. |
|
I usually retrieve the url via youtube-dl and pipe it to arai2c. That's what I do. Something like this can work: #!/bin/bash
# Input
address=$1
video_filename="$(youtube-dl --get-filename -o '%(title)s.%(ext)s' --restrict-filenames $address)"
video_url="$(youtube-dl --get-url $address)"
# modify aria2c options as needed
aria2c -x16 -s20 -k1M --out=$video_filename $video_url |
|
You may also need to tell |
|
@rbrito I hadn't thought of that. I didn't seem to need it for my use cases. Doesn't seem hard to set. |
|
For aria2c/axel-like threaded downloading, see #350. Closing as a duplicate. |
|
Sorry, this issue is kind of different than #350. Reopening. |
|
Any news here guys? |
I love youtube-dl! Its amazing... but when trying to download larger files (1 hour or longer) it takes a decent amount of time. Ive heard of aria2 and some wrappers you can use but they haven't seem to been update in quite some time. Is there anything available to make the downloads faster without losing quality?