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

Done downloading 0 videos #6

Open
AnimeniacSimey opened this issue Nov 10, 2020 · 8 comments
Open

Done downloading 0 videos #6

AnimeniacSimey opened this issue Nov 10, 2020 · 8 comments

Comments

@AnimeniacSimey
Copy link

Hello! Since this is not a youtube-dl repo, I figured I wouldn't ask my question here. I put in a channel link, and it says the following: [youtube:channel] UCIcgBZ9hEJxHv6r_jDYOMqg: Downloading channel page [youtube:playlist] UUIcgBZ9hEJxHv6r_jDYOMqg: Downloading webpage [download] Downloading playlist: UUIcgBZ9hEJxHv6r_jDYOMqg [youtube:playlist] playlist UUIcgBZ9hEJxHv6r_jDYOMqg: Downloading 0 videos [download] Finished downloading playlist: UUIcgBZ9hEJxHv6r_jDYOMqg

Can you help with this please? Thanks!

@alexx-ftw
Copy link

alexx-ftw commented Nov 10, 2020

Exactly the same is happening for me but with another Playlist!

@akraus53
Copy link

akraus53 commented Nov 10, 2020

Wow guys I recognized that playlist link....

Workaround:
Use any online tool to get all playlist links and put them in a list and pass the list to the downloader.

with open('list.json') as f:
    links = json.load(f)
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
    ydl.download(links)

So, if one made this json file for the example playlist above you'd get this:
https://gist.github.com/akraus53/659c4c37713de29d70f1bdc9822a80b0

@alexx-ftw
Copy link

Wow guys I recognized that playlist link....

Workaround:
Use any online tool to get all playlist links and put them in a list and pass the list to the downloader.

with open('list.json') as f:
    links = json.load(f)
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
    ydl.download(links)

So, if one made this json file for the example playlist above (you sneeky fuck) you'd get this:
https://gist.github.com/akraus53/659c4c37713de29d70f1bdc9822a80b0

Is there a version to use in Powershell?

@terrabitz
Copy link

@ezanchi Assuming you had the list in list.json formatted the same as the given example list, a quick-and-dirty script would be the following:

Get-Content ./list.json | ConvertFrom-Json | % {
 youtube-dl $_
}

@alexx-ftw
Copy link

Wow guys I recognized that playlist link....

Workaround:
Use any online tool to get all playlist links and put them in a list and pass the list to the downloader.

with open('list.json') as f:
    links = json.load(f)
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
    ydl.download(links)

So, if one made this json file for the example playlist above you'd get this:
https://gist.github.com/akraus53/659c4c37713de29d70f1bdc9822a80b0

@ezanchi Assuming you had the list in list.json formatted the same as the given example list, a quick-and-dirty script would be the following:

Get-Content ./list.json | ConvertFrom-Json | % {
 youtube-dl $_
}

IT WORKS.

Thank you guys!! You saved me so much time!

Do you have any idea on why is youtube-dl not downloading the playlist by itself?

@AnimeniacSimey
Copy link
Author

Wow guys I recognized that playlist link....

Workaround:
Use any online tool to get all playlist links and put them in a list and pass the list to the downloader.

with open('list.json') as f:
    links = json.load(f)
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
    ydl.download(links)

So, if one made this json file for the example playlist above you'd get this:
https://gist.github.com/akraus53/659c4c37713de29d70f1bdc9822a80b0

Hi! Could you explain this to me and how to do it please? I don't understand a single word 😅

@joshgarde
Copy link

lol - archiving the channel the day before it goes down; memento mori 💀

@akraus53
Copy link

akraus53 commented Nov 17, 2020

Hi! Could you explain this to me and how to do it please? I don't understand a single word 😅

Too late I guess :D

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

No branches or pull requests

5 participants