
Problem with my SMIL / player setup for dynamic RTMP streaming
Hello there, I'm trying to do dynamic rtmp streaming. I encode the original stream and pass it to a second rtmp stream and the end result is two rtmp streams with different bit rates. When i try to set up my SMIL file I am returned the error "manifest not found or invalid" and i'm assuming the manifest is invalid.
Here is my smil file setup
<smil>
<head>
<meta base="rtmp://myurl:1935/live/a" />
</head>
<body>
<switch>
<video src="rtmp://myurl:1935/live/a" height="1080" system-bitrate="3584000" width="1920" />
<video src="rtmp://myurl:1935/live720p/b" height="720" system-bitrate="1740800" width="1280" />
</switch>
</body>
</smil>
If this is not the correct setup what would be?