diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-01-18 16:25:32 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-01-18 16:25:32 +0100 |
| commit | edc4ab2985ec9b3568394bcc4beeeb7d6f5cc181 (patch) | |
| tree | 6dfe0974852f699499c6914d694cb70c90350643 | |
| parent | d4088891e85b048fe42e7cfd5e9cf071ee66f1a7 (diff) | |
parameter smoothing
| -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 c12063b..3f720c5 100644 --- a/cli/app/search/live.py +++ b/cli/app/search/live.py @@ -453,7 +453,7 @@ class Listener: '-c:v', 'libx264', '-preset', 'slow', '-crf', '19', - '-vf', 'fps=' + FPS, + '-vf', 'fps={}'.format(FPS), '-pix_fmt', 'yuv420p', '-s', '512x512', '-r', FPS, |
