youtube-dl

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

commit 55c49908d29bbfb3287159be29e9991f1d5f5b2c
parent db9b0b67b728ae4bb95ac5ed66fdefa467afbf12
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu, 21 Aug 2014 12:15:51 +0200

[youtube] Handle incorrectly written cache files (#3549)

Diffstat:
Myoutube_dl/extractor/youtube.py | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py @@ -374,6 +374,13 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor): return lambda s: u''.join(s[i] for i in cache_spec) except IOError: pass # No cache available + except ValueError: + try: + file_size = os.path.getsize(cache_fn) + except (OSError, IOError) as oe: + file_size = str(oe) + self._downloader.report_warning( + u'Cache %s failed (%s)' % (cache_fn, file_size)) if player_type == 'js': code = self._download_webpage(