diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-12-12 02:57:36 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-12-12 02:57:36 +0100 |
commit | 42bdd9d0516be5b71c89c9cccde16a880a14b0b1 (patch) | |
tree | 5bb4344cfe824b6de71c7e03893c9bd491554747 /youtube_dl/extractor/cinchcast.py | |
parent | 4e40de6e2a62b56044a98828bc2df9b93e3dc665 (diff) |
[cinchcast] Add new extractor (Fixes #4428)
Diffstat (limited to 'youtube_dl/extractor/cinchcast.py')
-rw-r--r-- | youtube_dl/extractor/cinchcast.py | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/youtube_dl/extractor/cinchcast.py b/youtube_dl/extractor/cinchcast.py new file mode 100644 index 000000000..8ce8b3128 --- /dev/null +++ b/youtube_dl/extractor/cinchcast.py @@ -0,0 +1,53 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from .common import InfoExtractor +from ..utils import ( + int_or_none, + unified_strdate, + xpath_text, +) + + +class CinchcastIE(InfoExtractor): + _VALID_URL = r'https?://player\.cinchcast\.com/.*?assetId=(?P<id>[0-9]+)' + _TEST = { + # Actual test is run in generic, look for undergroundwellness + 'url': 'http://player.cinchcast.com/?platformId=1&assetType=single&assetId=7141703', + 'only_matching': True, + } + + def _real_extract(self, url): + video_id = self._match_id(url) + doc = self._download_xml( + 'http://www.blogtalkradio.com/playerasset/mrss?assetType=single&assetId=%s' % video_id, + video_id) + + item = doc.find('.//item') + title = xpath_text(item, './title', fatal=True) + date_str = xpath_text( + item, './{http://developer.longtailvideo.com/trac/}date') + upload_date = unified_strdate(date_str, day_first=False) + # duration is present but wrong + formats = [] + formats.append({ + 'format_id': 'main', + 'url': item.find( + './{http://search.yahoo.com/mrss/}content').attrib['url'], + }) + backup_url = xpath_text( + item, './{http://developer.longtailvideo.com/trac/}backupContent') + if backup_url: + formats.append({ + 'preference': 2, # seems to be more reliable + 'format_id': 'backup', + 'url': backup_url, + }) + self._sort_formats(formats) + + return { + 'id': video_id, + 'title': title, + 'upload_date': upload_date, + 'formats': formats, + } |