Wowza Community

add welcome video before play live stream on client side

hi

any body help me to add welcome video before play live stream

every client when hit on rtsp or other live link than first play welcome video and after that play live stream

please help me i m beginner in wowza implementations

There is no way to do pre-roll for live stream in Wowza at present.

You could do intermittent ad inserts, like tv ads, using Stream class:

https://www.wowza.com/docs/stream-class-example

https://www.wowza.com/docs/how-to-schedule-streaming-with-wowza-streaming-engine-streampublisher

https://www.wowza.com/docs/how-to-control-stream-class-streams-dynamically-modulestreamcontrol

https://www.wowza.com/docs/how-to-switch-streams-using-stream-class-streams

Richard

The only way to do static pre-roll for live stream using Wowza (at present) is in coordination with a Flash RTMP client. The client plays a static video, listens for “NetStream.Play.Stop” notification in the NetStream.onPlayStatus handler, then plays the live stream.

If the Wowza Application.xml /StreamType is “default”, do this before you play the live stream:

netconnection.call("setStreamType",null, "live");
var netstreamLive:NetStream = new NetStream(netconnection);
netstreamLive.play(streamName);

Richard

Hi

I don’t think Wowza has a module built for this but you can create your own or one can be created for you as a custom module.

If you choose to have one created for you, you can get the list of independent consultants by emailing support@wowza.com

Jason

There is no way to do pre-roll for live stream in Wowza at present.

You could do intermittent ad inserts, like tv ads, using Stream class:

https://www.wowza.com/docs/stream-class-example

https://www.wowza.com/docs/how-to-schedule-streaming-with-wowza-streaming-engine-streampublisher

https://www.wowza.com/docs/how-to-control-stream-class-streams-dynamically-modulestreamcontrol

https://www.wowza.com/docs/how-to-switch-streams-using-stream-class-streams

Richard

Hello rrlanham,

From your given link we can just able to add welcome video on static VOD but i need to add it in before live streaming.

Please guide me how can i achieve it.

Thanks in advance !

Warm Regards,

Jaymin K. Thakkar.