Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

404 error downloading from YouTube channel that does exist #396

Closed
DopefishJustin opened this issue Aug 11, 2012 · 2 comments
Closed

404 error downloading from YouTube channel that does exist #396

DopefishJustin opened this issue Aug 11, 2012 · 2 comments
Labels
bug

Comments

@DopefishJustin
Copy link

@DopefishJustin DopefishJustin commented Aug 11, 2012

I obtained the latest youtube-dl file from git master and get the following behaviour:

$ ~/youtube-dl https://www.youtube.com/channel/UCCEsNSjX_VyBI1XDLSxc05w
[youtube] Setting language
[youtube] channel: Downloading video webpage
ERROR: unable to download video webpage: HTTP Error 404: Not Found

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.

@GARCAD
Copy link

@GARCAD GARCAD commented Oct 13, 2012

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

@FiloSottile
Copy link
Collaborator

@FiloSottile FiloSottile commented Oct 14, 2012

youtube-dl here tries to grab a video named "channel"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
3 participants
You can’t perform that action at this time.