RTSP Server #1123
RoySalisbury
started this conversation in
Ideas
RTSP Server
#1123
Replies: 1 comment 5 replies
-
I am not sure about creating a live RTPS stream. I am not saying it cannot be done, but I have never done it. It might be interesting if ffmpeg could read images from a FIFO and stream that live. I came up with this command as an example (just leaving this as a note for me later)
I will take a longer look at this next week when I return from travel. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Background:
When I was trying my hand at my own allsky camera awhile back, one of the tings I struggled with was making the timelapse video of the evening images. The process I ended up with was taking the CURRENT image every second and saving it to a temp file. No matter if it was a 20 second image or a 2 second image, I would make a copy every 1 second. Then, on my hourly "timelapse" I would feed each of these images into ffmpeg to create a timelapse and set the FPS to 30. This worked really well and I had a very nice timelapse.
Request:
I'm wondering if there is a way to do something similar but instead of doing it hourly off of temporary jpg images, you could do it as a "live" rtsp video. The current image would be piped into ffmpeg from memory to simulate a 15/30 fps stream and then encoded into an .h264 live stream.
This could then be used to PUSH the stream into something like youtube for a live stream.
Currently I am doing something "similar" but using a 3rd party camera security package (BlueIris) to pullythe jpg once a second from the allsky website and then setting the video encoder to 1 FPS. I can then use BlueIris to push the stream to YouTube. It works, but seems like a workaround that indi-allsky might be able to do itself, and not have all the encoding/decoding/reencoding to that degrades quality.
Beta Was this translation helpful? Give feedback.
All reactions