Re: [FFmpeg-user] Multiple input streams, one continuous output stream?

2021-11-01 Thread Leo Butler via ffmpeg-user
Steven Kan writes: > Hi! I currently stream my IP cameras to YouTube with a command of the form: > > ffmpeg -i "rtsp://anonymous:password@192.168.1.11:554" -vcodec copy > -acodec copy -t 01:00:00 -f flv > "rtmp://a.rtmp.youtube.com/live2/my-youtube-streaming-key” > > It works well, for a single c

Re: [FFmpeg-user] Multiple input streams, one continuous output stream?

2021-10-27 Thread Carl Zwanzig
On 10/27/2021 1:56 PM, Steven Kan wrote: What options would I have if I want to cycle through N cameras, each with its own RTSP URI, switching cameras every M seconds? Can this be done from an ffmpeg command? Or is there where ffserve gets involved? ffserver was removed 3-4 years ago. You _might_

[FFmpeg-user] Multiple input streams, one continuous output stream?

2021-10-27 Thread Steven Kan
Hi! I currently stream my IP cameras to YouTube with a command of the form: ffmpeg -i "rtsp://anonymous:password@192.168.1.11:554" -vcodec copy -acodec copy -t 01:00:00 -f flv "rtmp://a.rtmp.youtube.com/live2/my-youtube-streaming-key” It works well, for a single camera. What options would I ha