Browse Source

Detect errors in video data writes

rtmp_test
Ricardo Garcia 15 years ago
parent
commit
131efd1ae0
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      youtube-dl

+ 4
- 1
youtube-dl View File

@ -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


Loading…
Cancel
Save