From: Ricardo Garcia Date: Sat, 17 Apr 2010 16:49:56 +0000 (+0200) Subject: Detect errors in video data writes X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=131efd1ae0899f261fe9faccb91f5c9c3aa974c5;p=youtube-dl Detect errors in video data writes --- diff --git a/youtube-dl b/youtube-dl index d2bd0bf5f..86e247994 100755 --- a/youtube-dl +++ b/youtube-dl @@ -566,7 +566,10 @@ class FileDownloader(object): except (OSError, IOError), err: self.trouble('ERROR: unable to open for writing: %s' % str(err)) return False - stream.write(data_block) + try: + stream.write(data_block) + except (IOError, OSError), err: + self.trouble('ERROR: unable to write data: %s' % str(err)) block_size = self.best_block_size(after - before, data_block_len) # Progress message