From 8f4c9f8eed7317c1399b30cf4d305cb13a15a522 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Fri, 26 Aug 2011 17:37:56 +0200 Subject: [PATCH] those are actually pngs --- pandora_client/extract.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_client/extract.py b/pandora_client/extract.py index 728cf59..2cbfb6d 100644 --- a/pandora_client/extract.py +++ b/pandora_client/extract.py @@ -54,7 +54,7 @@ def frame(video, target, position): return r == 0 ''' #ffmpeg - cmd = ['ffmpeg', '-y', '-ss', str(position), '-i', video, '-f', 'mjpeg', '-an', '-vframes', '1', target] + cmd = ['ffmpeg', '-y', '-ss', str(position), '-i', video, '-an', '-vframes', '1', target] r = run_command(cmd) return r == 0