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.
Imgur URL causes endless loop #11071
Comments
|
Avoid imgur URLs with the As you already know, the hash or id is the important part of the URL. But yeah, this can be fixed by stripping out the Don't know what you're trying to do, but you can also do this with a text editor, for example. Edit: Okay, one little problem here. If the post is an album, the format Not sure if that is always the case, I am not really familiar with Imgur, but if the hash/ID has a length of 5 characters, it is an album, and if it's 7, a single post. |
|
Okay, I hacked together a bit of JavaScript, you can run it in you browser's dev console (Ctrl+Shift+I or Ctrl+Shift+J (Chomium) or Ctrl+Shift+K (Firefox)) // Select (container) elements
var a = document.querySelectorAll('div.post');
var cat = document.querySelectorAll('link')[8].getAttribute('href').replace(/http(s?).*\//, "");
var sst = "/r/" + cat + "/"
// Callback funtion for array loop
function getPostUrl(e, i, a) {
var n = a[i];
var c = n.getElementsByClassName('image-list-link');
var o = c[0].getAttribute('href');
var s = o.replace(sst, "")
if (s.length === 5)
console.log("https://imgur.com/a/" + s);
if (s.length === 7)
console.log("https://imgur.com/" + s);
}
// Iterate found elements
a.forEach(getPostUrl);These URLs should work with youtube-dl.. |
|
Thanks for the report. /r/ URLs will be recognized in the next version. |
Please follow the guide below
xinto all the boxes [ ] relevant to your issue (like that [x])Make sure you are using the latest version: run
youtube-dl --versionand ensure your version is 2016.10.26. If it's not read this FAQ entry and update. Issues with outdated version will be rejected.Before submitting an issue make sure you have:
What is the purpose of your issue?
The following sections concretize particular purposed issues, you can erase any section (the contents between triple ---) not applicable to your issue
If the purpose of this issue is a bug report, site support request or you are not completely sure provide the full verbose output as follows:
Add
-vflag to your command line you run youtube-dl with, copy the whole output and insert it here. It should look similar to one below (replace it with your log inserted between triple ```):If the purpose of this issue is a site support request please provide all kinds of example URLs support for which should be included (replace following example URLs by yours):
Description of your issue, suggested solution and other information
When I try to download this imgur link in the /r/foo/hash format, youtube-dl seems to go into an endless loop. When I get rid of the /r/aww/ part of the URL, it works fine. Other imgur.com links are working fine.