transpose=2 is counter clockwise, plus filter order should be rotation
last to match the css application order
(cherry picked from commit bdb55e0)
This commit is contained in:
parent
6d24a46e88
commit
d4be7f18e2
1 changed files with 2 additions and 2 deletions
|
|
@ -281,12 +281,12 @@ class Timelapse(object):
|
|||
filters = []
|
||||
|
||||
# flip video if configured
|
||||
if settings().getBoolean(["webcam", "rotate90"]):
|
||||
filters.append('transpose=1')
|
||||
if settings().getBoolean(["webcam", "flipH"]):
|
||||
filters.append('hflip')
|
||||
if settings().getBoolean(["webcam", "flipV"]):
|
||||
filters.append('vflip')
|
||||
if settings().getBoolean(["webcam", "rotate90"]):
|
||||
filters.append('transpose=2')
|
||||
|
||||
# add watermark if configured
|
||||
watermarkFilter = None
|
||||
|
|
|
|||
Loading…
Reference in a new issue