The Multi-Encoder feature allows multiple output streams in different configurations.
With the SDK or Web Plugin, it is very easy to create streaming outputs.
Example pseude code:
out1 = live.AddOutput("rtmp://ws2.nanocosmos.de/live+myStream"); out2 = live.AddOutput("c:\\temp\\record.mp4"); live.SetVideoBitrate(400*1000,out1); // 400 k RTMP live.SetVideoBitrate(1500*1000,out2); // 1.5 M MP4 live.StartBroadcast();