diff options
| author | Leslie P. Polzer <polzer@gnu.org> | 2015-02-20 10:49:45 +0100 | 
|---|---|---|
| committer | Leslie P. Polzer <polzer@gnu.org> | 2015-02-20 10:49:45 +0100 | 
| commit | 5da6bd00837236cf8a5dc5aeeadae5cfed7f2021 (patch) | |
| tree | d8533e7577c1c1f311ce9ab8ce7fe6016f362201 /youtube_dl/extractor/chirbit.py | |
| parent | dd0a58f5f028980ba76450998b218ea7a4920420 (diff) | |
[chirbit] Add new extractor.
Diffstat (limited to 'youtube_dl/extractor/chirbit.py')
| -rw-r--r-- | youtube_dl/extractor/chirbit.py | 34 | 
1 files changed, 34 insertions, 0 deletions
diff --git a/youtube_dl/extractor/chirbit.py b/youtube_dl/extractor/chirbit.py new file mode 100644 index 000000000..06a3e1a7a --- /dev/null +++ b/youtube_dl/extractor/chirbit.py @@ -0,0 +1,34 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from .common import InfoExtractor + + +class ChirbitIE(InfoExtractor): +    _VALID_URL = r'https?://(?:www\.)?chirb\.it/(?P<id>[^/]+)' +    _TEST = { +        'url': 'http://chirb.it/PrIPv5', +        'md5': '9847b0dad6ac3e074568bf2cfb197de8', +        'info_dict': { +            'id': 'PrIPv5', +            'display_id': 'kukushtv_1423231243', +            'ext': 'mp3', +            'title': 'Фасадстрой', +            'url': 'http://audio.chirbit.com/kukushtv_1423231243.mp3' +        } +    } + +    def _real_extract(self, url): +        audio_linkid = self._match_id(url) +        webpage = self._download_webpage(url, audio_linkid) + +        audio_title = self._html_search_regex(r'<h2\s+itemprop="name">(.*?)</h2>', webpage, 'title') +        audio_id = self._html_search_regex(r'\("setFile",\s+"http://audio.chirbit.com/(.*?).mp3"\)', webpage, 'audio ID') +        audio_url = 'http://audio.chirbit.com/' + audio_id + '.mp3'; + +        return { +            'id': audio_linkid, +            'display_id': audio_id, +            'title': audio_title, +            'url': audio_url +        }  | 
