youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 5a5523698d39a25d6c123f2e1238b36dab0bed0d
parent 05a2c206bebcfc430962aa733cd6271c40339c16
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu, 27 Sep 2012 20:48:16 +0200

Add new field "extractor" to the info dictionary

Diffstat:
Myoutube_dl/FileDownloader.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py @@ -474,8 +474,8 @@ class FileDownloader(object): # Extract information from URL and process it videos = ie.extract(url) for video in videos or []: + video['extractor'] = ie.IE_NAME try: - video['provider'] = ie.IE_NAME self.increment_downloads() self.process_info(video) except UnavailableVideoError: