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