aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorealgase <mostdigitsofpi@gmail.com>2019-04-06 23:59:41 -0400
committerGitHub <noreply@github.com>2019-04-06 23:59:41 -0400
commit9ed06812ec8da6f1364acd00261935c334994e62 (patch)
tree5e8aa732fcc9e628a32de08b54a50db8280bf083
parenta46d9e5b41bcfdf23038fa9b36aec5d4ba9c6de0 (diff)
downloadyoutube-dl-9ed06812ec8da6f1364acd00261935c334994e62.tar.xz
[streamango] add support for streamcherry.com
-rw-r--r--youtube_dl/extractor/streamango.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/streamango.py b/youtube_dl/extractor/streamango.py
index efb259f96..f1e17dd88 100644
--- a/youtube_dl/extractor/streamango.py
+++ b/youtube_dl/extractor/streamango.py
@@ -14,7 +14,7 @@ from ..utils import (
class StreamangoIE(InfoExtractor):
- _VALID_URL = r'https?://(?:www\.)?(?:streamango\.com|fruithosts\.net)/(?:f|embed)/(?P<id>[^/?#&]+)'
+ _VALID_URL = r'https?://(?:www\.)?(?:streamango\.com|fruithosts\.net|streamcherry\.com)/(?:f|embed)/(?P<id>[^/?#&]+)'
_TESTS = [{
'url': 'https://streamango.com/f/clapasobsptpkdfe/20170315_150006_mp4',
'md5': 'e992787515a182f55e38fc97588d802a',
@@ -41,6 +41,9 @@ class StreamangoIE(InfoExtractor):
}, {
'url': 'https://fruithosts.net/f/mreodparcdcmspsm/w1f1_r4lph_2018_brrs_720p_latino_mp4',
'only_matching': True,
+ }, {
+ 'url': 'https://streamcherry.com/f/clapasobsptpkdfe/',
+ 'only_matching': True,
}]
def _real_extract(self, url):