ffmpeg with multiple outputs #3737
Replies: 4 comments
-
I found a way with tee:
The delay is way better, but the problem is, that I have to encode both streams and I can't control the bitrate more exact for every stream. |
Beta Was this translation helpful? Give feedback.
-
Hello, |
Beta Was this translation helpful? Give feedback.
-
Hi @Alehap,
|
Beta Was this translation helpful? Give feedback.
-
For complex transcoding, you can use HTTP-Callback to hook the events, and do some tricks in your system. |
Beta Was this translation helpful? Give feedback.
-
Hi,
is it possible to transcode with one ffmpeg node to two targets. In ffmpeg it would looks like:
ffmpeg -i input.ext -s 1024x576 -c:v libx264 [...] -f flv rtmp://stream1 -s 512x288 -c:v libx264 -f flv rtmp://stream2
I need this, because at the moment we stream with two ffmpeg nodes two resolutions, but they are not sync, and we need them sync for adaptive streaming.
Beta Was this translation helpful? Give feedback.
All reactions