diff options
author | David Fabijan <david.fabijan@gmail.com> | 2014-08-03 11:55:51 +0200 |
---|---|---|
committer | David Fabijan <david.fabijan@gmail.com> | 2014-08-03 11:55:51 +0200 |
commit | be79b079070e321dd9ab63573494709f9ae81cbd (patch) | |
tree | fc1f6c824f8893602b6e1ad0a76d3d49ce449194 /youtube_dl/extractor/mojvideo.py | |
parent | 5537dce84da34110198fc9b46c1770e5eca0fa8b (diff) |
[Mojvideo] Add new extractor (minor changes)
Diffstat (limited to 'youtube_dl/extractor/mojvideo.py')
-rw-r--r-- | youtube_dl/extractor/mojvideo.py | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/youtube_dl/extractor/mojvideo.py b/youtube_dl/extractor/mojvideo.py index db315c17e..db2bb6dc2 100644 --- a/youtube_dl/extractor/mojvideo.py +++ b/youtube_dl/extractor/mojvideo.py @@ -12,13 +12,8 @@ class MojvideoIE(InfoExtractor): 'ext': 'mp4', 'title': 'V avtu pred mano rdečelaska - Alfi Nipič', 'description':'Video: V avtu pred mano rdečelaska - Alfi Nipič', - 'height':378, + 'height':37 8, 'width':480 - # TODO more properties, either as: - # * A value - # * MD5 checksum; start the string with md5: - # * A regular expression; start the string with re: - # * Any Python type (for example int or float) } } @@ -26,7 +21,6 @@ class MojvideoIE(InfoExtractor): mobj = re.match(self._VALID_URL, url) video_id = mobj.group('id') - # TODO more code goes here, for example ... webpage = self._download_webpage(url, video_id) title = self._html_search_regex(r'<title>(.*?)</title>', webpage, 'title') description = self._search_regex(r'<meta name="description" content="(.*)" />', webpage, 'video description') @@ -42,5 +36,4 @@ class MojvideoIE(InfoExtractor): 'url': final_url, 'height':height, 'width':width - # TODO more properties (see youtube_dl/extractor/common.py) }
\ No newline at end of file |