Hello,
I’m new in Wowza and I’m testing the trial version, my goal is create a schedule stream with live content transcoded and transcoded videos.
So far I managed to do this without live stream:
streamschedule.smil
<smil>
<head>
</head>
<body>
<stream name="stream"></stream>
<playlist name="pl1" playOnStream="stream" repeat="true" scheduled="2015-05-26 12:00:00">
<video src="mp4:video1.mp4" start="0" length="-1"/>
</playlist>
<playlist name="pl2" playOnStream="stream" repeat="true" scheduled="2015-05-26 13:00:00">
<video src="mp4:video2.mp4" start="0" length="-1"/>
</playlist>
<playlist name="pl3" playOnStream="stream" repeat="true" scheduled="2015-05-26 14:00:00">
<video src="mp4:video3.mp4" start="0" length="-1"/>
</playlist>
</body>
</smil>
switch.smil
<?xml version="1.0" encoding="UTF-8"?>
<smil title="Videos">
<body>
<switch>
<video height="720" src="stream_720p" systemLanguage="por" width="1280">
<param name="videoBitrate" value="1300000" valuetype="data"></param>
<param name="audioBitrate" value="125000" valuetype="data"></param>
</video>
<video height="360" src="stream_360p" systemLanguage="por" width="640">
<param name="videoBitrate" value="850000" valuetype="data"></param>
<param name="audioBitrate" value="125000" valuetype="data"></param>
</video>
<video height="160" src="stream_160p" systemLanguage="por" width="284">
<param name="videoBitrate" value="200000" valuetype="data"></param>
<param name="audioBitrate" value="125000" valuetype="data"></param>
</video>
</switch>
</body>
</smil>
Playback:
http://[wowza-ip-address]:1935/live/smil:switch.smil/playlist.m3u8
Or with live stream but without schedule.
<?xml version="1.0" encoding="UTF-8"?>
<smil title="TV24">
<body>
<switch>
<video height="720" src="myStream_source"
systemLanguage="por" width="1280">
<param name="videoBitrate" value="2025000" valuetype="data"></param>
<param name="audioBitrate" value="192000" valuetype="data"></param>
</video>
<video height="360" src="myStream_360p "
systemLanguage="por" width="640">
<param name="videoBitrate" value="850000" valuetype="data"></param>
<param name="audioBitrate" value="192000" valuetype="data"></param>
</video>
<video height="160" src="myStream_160p" systemLanguage="por" width="284">
<param name="videoBitrate" value="200000" valuetype="data"></param>
<param name="audioBitrate" value="192000" valuetype="data"></param>
</video>
</switch>
</body>
</smil>
I know that
Sorry for my english, I hope you can understand my question.