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 it possible to provide html websource as argument or in ydl.extract_info?? #25260
Comments
|
Setup local webserver and serve via local URL. |
|
I do not want the youtube_dl to download, request the URL. Instead just would like to pass the html dom tree. Would it prevent it or what will your suggestion actually does? Could you give me an example of implementation if possible? Thank you @dstftw |
|
Again: it's not possible to pass HTML. |
|
Okay, good to know that the implementation is not easy maybe not possible. Thanks |
It is not possible now to pass html webpage source to youtube_dl but would be great to find some workaround for that. Tried to manually pass the argument on
ydl.extract_info(website)and related _real_extract functions and many other dependent ones, but since each file has slightly different implementation of getting page source, I stuck at some point. Is it possible to implement this option. Could help us since we are also parsing some paywalled articles?