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.
404 error downloading from YouTube channel that does exist #396
Comments
|
while you wait ... wget http://www.youtube.com/channel/UCCEsNSjX_VyBI1XDLSxc05w --O source.htm grep -o '/watch?v=.{11}' source.htm | sed 's/^/http://youtube.com/' | uniq > urls.txt ---or--- grep -o '/watch?v=.{11}' source.htm | sed "s/^/http://youtube.com/" | uniq > urls.txt ---and--- youtube-dl -o %(title)s.%(ext)s --batch-file urls.txt --max-quality --no-overwrites http://tinyapps.org/blog/nix/201004110700_batch_download_youtube_bash.html Salu2 |
|
youtube-dl here tries to grab a video named "channel" |
I obtained the latest youtube-dl file from git master and get the following behaviour:
The channel page loads normally in the browser and running youtube-dl on the individual video URLs works fine.
Normally I use the youtube.com/user/username style of URL but it seems this user does not have one.