-
Notifications
You must be signed in to change notification settings - Fork 10.1k
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
[DoodStream] Add extractor #32979
base: master
Are you sure you want to change the base?
[DoodStream] Add extractor #32979
Conversation
de01b5d
to
6456200
Compare
31d3220
to
dde081c
Compare
dde081c
to
c09207a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the update and decoding the pass_md5/token stuff.
I've made some comments for information, but I'll apply the changes to the old PR with attribution. The question to be settled is whether the '/d/' page ever embeds a link other than the matching '/e/' page.
I tried it, but i get this error: My code: from yt_dlp import YoutubeDL
# Define the video URL
video_url = "https://dood.sh/e/fayk8qbo63zm"
# Options for yt-dlp
ydl_opts = {
'format': 'best', # Download the best quality
'outtmpl': '%(title)s.%(ext)s', # Save with video title as filename
'extractor_args': {
'generic': {
'impersonate': 'chrome', # Impersonate Chrome browser
}
},
}
# Create a downloader instance
with YoutubeDL(ydl_opts) as ydl:
ydl.download([video_url]) Thanks |
#30839 "... if you were actually running yt-dlp ..." If this code should happen to run correctly within yt-dlp, you'd have to add its import to FWIW your URL works with the new #31003 code for me. Your IP may be flagged at CF (eg, running the code in a clown^H^Hud VM). The suggestion in your error message wouldn't be relevant; even using |
* update tests * send `Referer` when fetching media link Co-authored-by: mp3butcher <julienvalentin51@gmail.com>
update of outdated extractors:
Closes #28903.
Closes #28008.
Closes #31003