Wowza Community

How can I set up multiple channels?

Hi all, based on this topic (how-to-schedule-streaming-with-wowza-streaming-engine-streampublisher) (Sorry i cannot include any links) I have setup a single stream channel. But now I want multiple applications to have their own channel.
It is said that you need to activate ModuleStreamPublisher . but it is not helping.
Is there anyone to guide me through this step by step by step?
I have 3 live applications. for each of them I added com.wowza.wms.plugin.streampublisher.ModuleStreamPublisher
module. and a new smil file is created for each one.

Hi,
after adding the modules definition to the applications you can create schedule.smil file with the simple test schedule:

<smil>
<head>
</head>
<body>
    <stream name="Stream1"></stream>      
    <playlist name="pl1" playOnStream="Stream1" repeat="true" scheduled="2016-04-15 16:00:00">
        <video src="mp4:sample.mp4" start="0" length="-1"/>           
    </playlist>
</body>

Next you should try to play the stream. The application will be loaded and the schedule will start to work after the first play request only.
You will see “Stream1” to appear in Incoming Streams tab of Wowza web manager.

To start schedule for all applications upon Wowza startup automatic you can use Application load and lock module.

Thank you in advance.
I Created a live application called “MyTest”. I created a smill file exactly like the one you said in content folder. After that I added ModuleStreamPublisher into my MyTest application ( just by simlpy click on module section and edit current modules and add new one).
after that I used my vlc player to test it. this is my url: http://*:1935/MyTest/Stream1/playlist.m3u8
I encountered an error.

The first attempt to play http://*:1935/live/Stream1/playlist.m3u8 will start the application. Video will not play in VLC but you should see the stream name to appear in Applications-> MyTest-> Incoming Streams tab., After it the stream will start to play in VLC.

After first attempt i see this but it is empty.

Default Instance (definst)

Stream Status Actions ( columns) ( with no rows)

I reinstall my server and now it is working properly.
Thanks again for your response.