diff options
| author | tassaron | 2017-07-30 21:59:42 -0400 |
|---|---|---|
| committer | tassaron | 2017-07-30 21:59:42 -0400 |
| commit | a472246dab69d0676c3c78ecd61659e432c960b4 (patch) | |
| tree | 3b42963a0c395238b199ce80c62cbf33579ad021 | |
| parent | 65420ce2855a24d54755a7a47804c2fb5f6d427e (diff) | |
crop aphasermeter so it scales to look bigger
| -rw-r--r-- | src/components/spectrum.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/spectrum.py b/src/components/spectrum.py index d1ad297..8ab8404 100644 --- a/src/components/spectrum.py +++ b/src/components/spectrum.py @@ -227,7 +227,8 @@ class Component(Component): filter_ = ( 'aphasemeter=r=%s:s=%sx%s:video=1 [atrash][vtmp1]; ' '[atrash] anullsink; ' - '[vtmp1] colorkey=color=black:similarity=0.1:blend=0.5 ' % ( + '[vtmp1] colorkey=color=black:similarity=0.1:blend=0.5, ' + 'crop=in_w/8:in_h:(in_w/8)*7:0 '% ( self.settings.value("outputFrameRate"), self.settings.value("outputWidth"), self.settings.value("outputHeight"), |
