mirror of
https://github.com/l1ving/youtube-dl
synced 2025-02-15 04:13:01 +08:00
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
# coding: utf-8
|
|
from __future__ import unicode_literals
|
|
|
|
from .common import InfoExtractor
|
|
|
|
|
|
class StreamangoIE(InfoExtractor):
|
|
_VALID_URL = r'https?://(?:www\.)?streamango\.com/(?:f|embed)/(?P<id>.+?)/(?:.+)'
|
|
_TESTS = [{
|
|
'url': 'https://streamango.com/f/clapasobsptpkdfe/20170315_150006_mp4',
|
|
'md5': 'e992787515a182f55e38fc97588d802a',
|
|
'info_dict': {
|
|
'id': 'clapasobsptpkdfe',
|
|
'ext': 'mp4',
|
|
'title': '20170315_150006.mp4',
|
|
'url': r're:https://streamango\.com/v/d/clapasobsptpkdfe~[0-9]{10}~185\.61\.0\.0~.{8}/720',
|
|
}
|
|
}, {
|
|
'url': 'https://streamango.com/embed/clapasobsptpkdfe/20170315_150006_mp4',
|
|
'only_matching': True,
|
|
}]
|
|
|
|
def _real_extract(self, url):
|
|
video_id = self._match_id(url)
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
title = self._og_search_title(webpage)
|
|
|
|
url = "https:" + self._search_regex(
|
|
r'type\s*:\s*["\']video/mp4["\']\s*,\s*src\s*:\s*["\'](?P<url>.+?)["\'].*',
|
|
webpage, 'video URL', group='url')
|
|
|
|
return {
|
|
'id': video_id,
|
|
'url': url,
|
|
'title': title,
|
|
'ext': 'mp4',
|
|
}
|