about summary refs log tree commit diff
path: root/youtube_dl/extractor/funnyordie.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/funnyordie.py
parentd8269e1dfbe06d4b373211e54476bcd326f69abe (diff)
downloadyoutube-dl-46720279c28afb646b6ac19bcb11e85bb4bea726.tar.gz
youtube-dl-46720279c28afb646b6ac19bcb11e85bb4bea726.tar.xz
youtube-dl-46720279c28afb646b6ac19bcb11e85bb4bea726.zip
InfoExtractor: add some helper methods to extract OpenGraph info
Diffstat (limited to 'youtube_dl/extractor/funnyordie.py')
-rw-r--r--youtube_dl/extractor/funnyordie.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/youtube_dl/extractor/funnyordie.py b/youtube_dl/extractor/funnyordie.py
index 388aacf2f..64363dcd5 100644
--- a/youtube_dl/extractor/funnyordie.py
+++ b/youtube_dl/extractor/funnyordie.py
@@ -27,14 +27,11 @@ class FunnyOrDieIE(InfoExtractor):
         title = self._html_search_regex((r"<h1 class='player_page_h1'.*?>(?P<title>.*?)</h1>",
             r'<title>(?P<title>[^<]+?)</title>'), webpage, 'title', flags=re.DOTALL)
 
-        video_description = self._html_search_regex(r'<meta property="og:description" content="(?P<desc>.*?)"',
-            webpage, u'description', fatal=False, flags=re.DOTALL)
-
         info = {
             'id': video_id,
             'url': video_url,
             'ext': 'mp4',
             'title': title,
-            'description': video_description,
+            'description': self._og_search_description(webpage, flags=re.DOTALL),
         }
         return [info]