aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/liveleak.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-07-12 19:00:19 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-07-12 22:12:04 +0200
commit46720279c28afb646b6ac19bcb11e85bb4bea726 (patch)
treec38b786e0176511bfbe5295a8a73582b121018fc /youtube_dl/extractor/liveleak.py
parentd8269e1dfbe06d4b373211e54476bcd326f69abe (diff)
downloadyoutube-dl-46720279c28afb646b6ac19bcb11e85bb4bea726.zip
youtube-dl-46720279c28afb646b6ac19bcb11e85bb4bea726.tar.gz
youtube-dl-46720279c28afb646b6ac19bcb11e85bb4bea726.tar.bz2
InfoExtractor: add some helper methods to extract OpenGraph info
Diffstat (limited to 'youtube_dl/extractor/liveleak.py')
-rw-r--r--youtube_dl/extractor/liveleak.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/youtube_dl/extractor/liveleak.py b/youtube_dl/extractor/liveleak.py
index cf8a2c9..dd062a1 100644
--- a/youtube_dl/extractor/liveleak.py
+++ b/youtube_dl/extractor/liveleak.py
@@ -33,11 +33,9 @@ class LiveLeakIE(InfoExtractor):
video_url = self._search_regex(r'file: "(.*?)",',
webpage, u'video URL')
- video_title = self._html_search_regex(r'<meta property="og:title" content="(?P<title>.*?)"',
- webpage, u'title').replace('LiveLeak.com -', '').strip()
+ video_title = self._og_search_title(webpage).replace('LiveLeak.com -', '').strip()
- video_description = self._html_search_regex(r'<meta property="og:description" content="(?P<desc>.*?)"',
- webpage, u'description', fatal=False)
+ video_description = self._og_search_description(webpage)
video_uploader = self._html_search_regex(r'By:.*?(\w+)</a>',
webpage, u'uploader', fatal=False)