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.
[Q] How to disable a particular extractor? #6871
Comments
|
There is no way to disable particular extractor. You can however disable sites with adults content |
Hi,
I wrote a simple tool to archive bookmark sets from bookmarking services/apps like Shaarli (delicious-like). It batch downloads links contents, and run youtube-dl on links which are specifically tagged
video,audio... The tools works well with a few quirks, one of which is related to youtube-dl:In my example bookmark set, there is a link to https://soundcloud.com/sjel-1. youtube-dl runs for this link since it is tagged
music, and this is parsed through thesoundcloud:userextractor. I expect my tool not to download entire soundcloud/vimeo/youtube channels even if I bookmarked them (unless the user specifies so). The simplest way I can imagine for this particular link is disabling thesoundcloud:userextractor.Is there a way to disable some extractors via config file/args? Right now it tends to download unwanted files. Or do I really have to blacklist URLs in my tool?
Thanks in advance