From d63cdea1618f3e493a966ce43fb735b0afc098b6 Mon Sep 17 00:00:00 2001 From: Yves Fischer Date: Sat, 2 Jan 2016 12:56:35 +0100 Subject: align size of thumb and thumb_video --- mediabrowser/ffmpeg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediabrowser/ffmpeg.py b/mediabrowser/ffmpeg.py index fd1782c..cd10ae4 100644 --- a/mediabrowser/ffmpeg.py +++ b/mediabrowser/ffmpeg.py @@ -117,7 +117,7 @@ def calculate_splittimes(ospath, chunk_duration): def thumbnail(ospath, width, height): process = LoggedPopen(shlex.split("ffmpeg -v fatal -noaccurate_seek -ss 25.0 -i") + [ospath] + shlex.split("-frames:v 10 -map 0:v" - " -filter:v 'scale=w=oh*a:h={}, crop=(min(iw\,{})):(min(ih\,{}))'" + " -filter:v \"scale='w=trunc(oh*a/2)*2:h={}', crop='min({},iw):min({},ih)'\"" " -f singlejpeg pipe:".format(height+(height/10), width, height)), stdout=PIPE) return process -- cgit v1.2.1