Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

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?

3 Community Answers

applekidztechtak

User  
0 rated :

was a mime type problem, but now the video just doesn't load

applekidztechtak

User  
0 rated :

I've solved the problem, I feel very stupid :( This is my smil file now for anyone having the same problem!

<smil>
<head>
<meta base="rtmp://theruss0n.duckdns.org:1935/live/" />
</head>
<body>
<switch>
<video src="a" height="1080" system-bitrate="358400" width="1920" />
<video src="b" height="720" system-bitrate="174080" width="1280" />
</switch>
</body>
</smil>

Andrew

JW Player Support Agent  
0 rated :

Awesome! Glad this is working. :)

This question has received the maximum number of answers.