northwoods
New Member
Can OBS or OBS Studio take 2 input streams from different sources, combine them and then send the output to ustream?
We have a hikvision camera and retrieve it's video stream using a rtsp url. We have a different rtsp stream containing audio. We need to take the video from the hikvision camera, combine it with the audio and then stream to ustream. This is possible with ffmpeg but something gets screwed up after 30 - 60 minutes of streaming and the video either freezes or goes to a black screen. I suspect it has something to do with trying to buffer 2 different inputs. The audio/video don't have to be perfectly synced. I'd be fine with a 5 second delay between audio and video. I just need both audio and video streams to be available on the ustream channel and I need them to be stable (neither one drops).
Camera stream
video
audio (contains audio stream but doesn't contain any audio - silence)
Mic stream
video (contains video stream but doesn't contain any video - blank screen)
audio
ffmpeg -i rtsp://camera -i rtsp://microphone -c copy -map 0:0 -map 1:1 rtmp://ustream
Can I accomplish something like this with OBS? Thanks!
We have a hikvision camera and retrieve it's video stream using a rtsp url. We have a different rtsp stream containing audio. We need to take the video from the hikvision camera, combine it with the audio and then stream to ustream. This is possible with ffmpeg but something gets screwed up after 30 - 60 minutes of streaming and the video either freezes or goes to a black screen. I suspect it has something to do with trying to buffer 2 different inputs. The audio/video don't have to be perfectly synced. I'd be fine with a 5 second delay between audio and video. I just need both audio and video streams to be available on the ustream channel and I need them to be stable (neither one drops).
Camera stream
video
audio (contains audio stream but doesn't contain any audio - silence)
Mic stream
video (contains video stream but doesn't contain any video - blank screen)
audio
ffmpeg -i rtsp://camera -i rtsp://microphone -c copy -map 0:0 -map 1:1 rtmp://ustream
Can I accomplish something like this with OBS? Thanks!