Skip to content

Commit

Permalink
[tenplay] PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
phihag committed Jul 11, 2014
1 parent 64a8c39 commit 04c77a5
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions youtube_dl/extractor/tenplay.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,41 @@

from .common import InfoExtractor


class TenPlayIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?ten(play)?\.com\.au/.+'
_TEST = {
'url': 'http://tenplay.com.au/ten-insider/extra/season-2013/tenplay-tv-your-way',
'md5': 'c9dda6aac8f814352ad2aee8899b1612',
#'md5': 'd68703d9f73dc8fccf3320ab34202590',
'info_dict': {
'id': '2695695426001',
'ext': 'flv',
'title': 'TENplay: TV your way',
'description': 'Welcome to a new TV experience. Enjoy a taste of the TENplay benefits.',
'timestamp': 1380150606.889,
'upload_date': '20130925',
'uploader': 'TENplay'
'uploader': 'TENplay',
},
'params': {
'skip_download': True, # Requires rtmpdump
}
}

_video_fields = ["id","name","shortDescription","longDescription","creationDate","publishedDate","lastModifiedDate","customFields","videoStillURL","thumbnailURL","referenceId","length","playsTotal","playsTrailingWeek","renditions","captioning","startDate","endDate"]
_video_fields = [
"id", "name", "shortDescription", "longDescription", "creationDate",
"publishedDate", "lastModifiedDate", "customFields", "videoStillURL",
"thumbnailURL", "referenceId", "length", "playsTotal",
"playsTrailingWeek", "renditions", "captioning", "startDate", "endDate"]

def _real_extract(self, url):
webpage = self._download_webpage(url, url)
video_id = self._html_search_regex(r'videoID: "(\d+?)"', webpage, 'video_id')
api_token = self._html_search_regex(r'apiToken: "([a-zA-Z0-9-_\.]+?)"', webpage, 'api_token')
title = self._html_search_regex(r'<meta property="og:title" content="\s*(.*?)\s*"\s*/?\s*>', webpage, 'title')
video_id = self._html_search_regex(
r'videoID: "(\d+?)"', webpage, 'video_id')
api_token = self._html_search_regex(
r'apiToken: "([a-zA-Z0-9-_\.]+?)"', webpage, 'api_token')
title = self._html_search_regex(
r'<meta property="og:title" content="\s*(.*?)\s*"\s*/?\s*>',
webpage, 'title')

json = self._download_json('https://api.brightcove.com/services/library?command=find_video_by_id&video_id=%s&token=%s&video_fields=%s' % (video_id, api_token, ','.join(self._video_fields)), title)

Expand All @@ -50,8 +62,8 @@ def _real_extract(self, url):
'ext': ext,
'vcodec': rendition['videoCodec'].lower(),
'container': rendition['videoContainer'].lower(),
'url': url
})
'url': url,
})

return {
'id': video_id,
Expand Down

0 comments on commit 04c77a5

Please sign in to comment.