Fix Issue 5375 Deprecated function in video thumb

This patch fixes issue 5375 by replacing a function call that has
been removed in recent versions of PIL with the recommended
replacement.
This commit is contained in:
ayleph 2015-12-17 21:06:42 -05:00 committed by Boris Bobrov
parent 13f187992a
commit 564a48e018

View File

@ -132,7 +132,7 @@ def capture_thumb(video_path, dest_path, width=None, height=None, percent=0.5):
buffer = sample.get_buffer() buffer = sample.get_buffer()
# get the image from the buffer and save it to disk # get the image from the buffer and save it to disk
im = Image.fromstring('RGB', (width, height), im = Image.frombytes('RGB', (width, height),
buffer.extract_dup(0, buffer.get_size())) buffer.extract_dup(0, buffer.get_size()))
im.save(dest_path) im.save(dest_path)
_log.info('thumbnail saved to {0}'.format(dest_path)) _log.info('thumbnail saved to {0}'.format(dest_path))