Hello.
We are looking for a good partner for streaming video.
And few questions arose, which need to be clarified.
-
Can we make one stream video out of several separate video files?
-
Can we play one video several times in stream?
For example if we need to make one video stream out of files:
a.mp4
b.mp4
c.mp4
but we need to play it in order:
1 time a
3 times b
2 times a
1 time c
Is it possible to make it using your API?
Hello @Danik Prem. What you’re looking for, is a server-side playlist in SMIL format. You can create a playlist and call it using the “smil:” prefix.
<smil>
<head>
</head>
<body>
<playlist name="pl1" repeat="true">
<video src="mp4:first.mp4" />
<video src="mp4:second.mp4" />
<video src="mp4:second.mp4" />
</playlist>
</body>
</smil>
Then call the playlist with http://my-wowza-server:1935/vod/smil:mysample.smil/playlist.m3u8
You can generate playlists outside of Wowza, and copy them to Wowza’s /content folder.
You should be able to use the stream publisher module to perform this type of task.
You can read about it here: https://www.wowza.com/docs/how-to-schedule-streaming-with-wowza-streaming-engine-streampublisher