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.
is there any method to download all of videos uploaded by a user , from supported sites without this feature #9648
Comments
|
You can find the code for the extractors at https://github.com/rg3/youtube-dl/tree/master/youtube_dl/extractor. As of now, the only ways to download all videos from a user on a website where this is not currently supported by youtube-dl, is either to externally fetch the necessary links and then parse them to youtube-dl, or modify the extractor for the website in question to support this. If you do the latter, you are welcome to open a pull request. Read the Developer Instructions for more details. |
|
yes , I understood your answer but i need help too , but how to do this for a non supported site eg : xvideos |
|
@siddht1 The code for downloading all the videos from one user page on a specific page, resides in that sites extractor. E.g. the extractor for youtube.com has a own class that recongize YouTube channel URLs and tries to fetch all the video links from the channel. The extractor for the site in question currently only supports single videos, but can be expanded to support user pages too. As this seems to be a request, the title should be changed to something more descriptive. |
|
As mentioned by @TRox1972 in general a separate extractor should be implemented to support playlists of particular site. |
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.05.30.2. 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
Explanation of your issue in arbitrary form goes here. Please make sure the description is worded well enough to be understood. Provide as much context and examples as possible.
If work on your issue required an account credentials please provide them or explain how one can obtain them.
Hi there,
I would like to know how to download all the videos uploaded by a user or from a playlist from a non supported site ? I know that this things works for youtube user, youtube playlist, instagram user , but how to do this from a non supported like pornhub , xvideos ,etc. Where does the code reside for the working sites inside youtube-dl ?