diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-01-17 13:29:42 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-01-17 13:29:42 +0100 |
| commit | 9c02705fda894d134b2770baa8ffbea3427e62d4 (patch) | |
| tree | a918a9e9b949466532a4ffdf2775baed0471a655 | |
| parent | fbf800fec797a22db274fa30e1dd2a32556e1e5a (diff) | |
compression level
| -rw-r--r-- | cli/app/search/live.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/app/search/live.py b/cli/app/search/live.py index 68b7275..8635b4c 100644 --- a/cli/app/search/live.py +++ b/cli/app/search/live.py @@ -441,7 +441,7 @@ class Listener: if out_img is not None: save_time = time.time() - out_img.save(os.path.join(path_out, "frame_{:05d}.png".format(i)), format='png') + out_img.save(os.path.join(path_out, "frame_{:05d}.png".format(i)), format='png', compression_level=3) save_time_total += time.time() - save_time resize_time = time.time() |
