diff options
author | schnusch <[email protected]> | 2021-04-25 19:32:47 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-26 00:32:47 +0700 |
commit | f5c2c062310b347cd2737920e3eb15f2aeb633d7 (patch) | |
tree | 7fbc88b8b89466a5970d28f741c3e536e0ea76bb | |
parent | 57eaaff5cf1ae63d4e3ae89f301c0f9b3e86bb55 (diff) | |
download | youtube-dl-f5c2c062310b347cd2737920e3eb15f2aeb633d7.tar.gz youtube-dl-f5c2c062310b347cd2737920e3eb15f2aeb633d7.zip |
[xfileshare] Add support for wolfstream.tv (#28858)
-rw-r--r-- | youtube_dl/extractor/xfileshare.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/extractor/xfileshare.py b/youtube_dl/extractor/xfileshare.py index cbd5d1cbb..df9efa9fa 100644 --- a/youtube_dl/extractor/xfileshare.py +++ b/youtube_dl/extractor/xfileshare.py @@ -58,6 +58,7 @@ class XFileShareIE(InfoExtractor): (r'vidlocker\.xyz', 'VidLocker'), (r'vidshare\.tv', 'VidShare'), (r'vup\.to', 'VUp'), + (r'wolfstream\.tv', 'WolfStream'), (r'xvideosharing\.com', 'XVideoSharing'), ) @@ -82,6 +83,9 @@ class XFileShareIE(InfoExtractor): }, { 'url': 'https://aparat.cam/n4d6dh0wvlpr', 'only_matching': True, + }, { + 'url': 'https://wolfstream.tv/nthme29v9u2x', + 'only_matching': True, }] @staticmethod |