youtube-dl

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

commit 05a2c206bebcfc430962aa733cd6271c40339c16
parent 8ca21983d87a65a81ae182b64daa791169a5615e
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu, 27 Sep 2012 11:45:07 -0700

Merge pull request #425 from danut007ro/master

Provider (youtube, etc) is now saved in info_dict
Diffstat:
Myoutube_dl/FileDownloader.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py @@ -475,6 +475,7 @@ class FileDownloader(object): videos = ie.extract(url) for video in videos or []: try: + video['provider'] = ie.IE_NAME self.increment_downloads() self.process_info(video) except UnavailableVideoError: