WebRTC (beta 4, with build in Go2RTC) instead of Simple RTSP server #685
Replies: 5 comments 6 replies
-
some background on this topic; This could be because of;
anyway, so, until another cycle, I am not planning to revisit this idea, but, why are you interested with this? |
Beta Was this translation helpful? Give feedback.
-
even though it is streaming? |
Beta Was this translation helpful? Give feedback.
-
I found a nice solution. I make a video and send it to Telegram. I record 4 seconds in very low resolution. I can see in Telegram that the first few frames are distorted, so I see a fraction of a second some gray frames but the rest of the video is perfect. Telegram is playing the video in the chat flow so it's great. I do this 40 seconds after the first motion detection. So I get a lot of small videos in my Telegram. ffmpeg -y -i rtsp://192.168.1.8:8554/T8210P0020330C10 -s 320x240 -t 4 -vcodec libx264 /config/tmp/ffmpeg-snapshot.mp4 |
Beta Was this translation helpful? Give feedback.
-
ffmpeg -y -i rtsp://192.168.1.8:8554/T8210P0020330C10 -c copy -map 0 -t 6 /config/tmp/ffmpeg-snapshot.mp4 With -c copy -map 0 -t 6 it's even better. No distortion at all and 6 seconds of video. Pure a copy of the stream, no encoding. |
Beta Was this translation helpful? Give feedback.
-
I'm interested in using go2rtc in place of rtsp simple server just because I'm running both addons and it would be nice to be able to run only one container for this purpose |
Beta Was this translation helpful? Give feedback.
-
I use this RTSP server (docker) explained in step 2 for my Eufy Doorbell (P2P).
Is it possible to use the WebRTC (beta 4, with build in Go2RTC) from AlexxIT (https://github.com/AlexxIT/WebRTC) ????
Beta Was this translation helpful? Give feedback.
All reactions