rotate ? #423
-
Hi, I have a rotation question. Actually 2 questions but they may be related.
config -
I saw this https://github.com/roflcoopter/viseron/issues/23#issuecomment-762649661 but What is the correct URL construct? Thanks for listening. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
It is quite easy to accomplish actually, you need to add video_filters to both the camera and recorder. ffmpeg:
camera:
camera_1:
....
video_filters: # These filters rotate the images processed by Viseron
- transpose=2
recorder:
video_filters: # These filters rotate the recorded video
- transpose=2 This is how transpose works in FFmpeg: 0 = 90CounterCLockwise and Vertical Flip (default)
1 = 90Clockwise
2 = 90CounterClockwise
3 = 90Clockwise and Vertical Flip Will add this to the FFmpeg docs as well |
Beta Was this translation helpful? Give feedback.
-
Regarding the mjpeg streams, thats a misstake in the docs. The URL is |
Beta Was this translation helpful? Give feedback.
Regarding the mjpeg streams, thats a misstake in the docs.
The URL is
http://xxx.xxx.xxx.xxx:8888/camera_3/mjpeg-streams/door_stream
, will updated the docs