diff options
author | Aldo Ridhoni <aldoridhoni@gmail.com> | 2022-08-15 03:43:03 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-15 01:13:03 +0530 |
commit | 66c4afd82892a12cfd9174750b6e12dfaa1d0fcb (patch) | |
tree | 57e19928cd444c64bc1d389445bb1d6f1f247a65 | |
parent | 0e0ce898f6226f712064a8e809cf3c5690789cce (diff) | |
download | hypervideo-pre-66c4afd82892a12cfd9174750b6e12dfaa1d0fcb.tar.lz hypervideo-pre-66c4afd82892a12cfd9174750b6e12dfaa1d0fcb.tar.xz hypervideo-pre-66c4afd82892a12cfd9174750b6e12dfaa1d0fcb.zip |
[extractor/doodstream] Add `wf` domain (#4648)
Authored by: aldoridhoni
-rw-r--r-- | yt_dlp/extractor/doodstream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/doodstream.py b/yt_dlp/extractor/doodstream.py index 0b4e5ccbd..b41da32e5 100644 --- a/yt_dlp/extractor/doodstream.py +++ b/yt_dlp/extractor/doodstream.py @@ -6,7 +6,7 @@ from .common import InfoExtractor class DoodStreamIE(InfoExtractor): - _VALID_URL = r'https?://(?:www\.)?dood\.(?:to|watch|so|pm)/[ed]/(?P<id>[a-z0-9]+)' + _VALID_URL = r'https?://(?:www\.)?dood\.(?:to|watch|so|pm|wf)/[ed]/(?P<id>[a-z0-9]+)' _TESTS = [{ 'url': 'http://dood.to/e/5s1wmbdacezb', 'md5': '4568b83b31e13242b3f1ff96c55f0595', |