From: Philipp Hagemeister Date: Tue, 25 Nov 2014 08:36:25 +0000 (+0100) Subject: [README] Mention _og_search_description (#4304) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=c3e74731c2acd2878a38c2a2daa2ed0c11352762;p=youtube-dl [README] Mention _og_search_description (#4304) Lots of sites do have this meta tag, so just add it to the example. --- diff --git a/README.md b/README.md index 6e572813c..cce2819fd 100644 --- a/README.md +++ b/README.md @@ -500,6 +500,7 @@ If you want to add support for a new site, you can follow this quick list (assum return { 'id': video_id, 'title': title, + 'description': self._og_search_description(webpage), # TODO more properties (see youtube_dl/extractor/common.py) } ```