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

Playing *.SDP live encoders streams from wowza


Hello everybody,

I'm trying to get ...Hello everybody,

I'm trying to get jwplayer to display a stream which comes from a hardware H264 encoder (SmartCapture from FastVDO) via RTP and Wowza as RTMP to the player. If I follow the wowza documentation it works in flashplayer sample app, but now I'm trying to get the stream to display in jwplayer. It doesn't seem to like a file name like:

rtmp://somewhere/livestreams/myStream.sdp

What is the correct syntax to get it to play this live stream?

Thanks!

BB

5 Community Answers

JW Player

User  
0 rated :

For the v4.1.55 JW FLV Media Player you might try:bc.. streamer: 'rtmp://some.where.else/livestreams',
file: 'myStream.sdp',


For swfobject v2.1

JW Player

User  
-1 rated :

Hi kLink,

Thanks for your reply. In 4.1.55 I'm doing:

<script type="text/javascript">
var s1 = new SWFObject("player.swf","ply","328","200","9","#FFFFFF");
s1.addParam("allowfullscreen","true");
s1.addParam("allowscriptaccess","always");
s1.addParam("streamer", "rtmp://wild.west.web/livestreams");
s1.addParam("file", "myStream.sdp");
s1.addParam("flashvars","image=preview.jpg");
s1.write("container");
</script>

and it doesn't even talk to Wowza, at least I'm not seeing any traces in Wowza debug mode.

Tis probably very simple, and I'm just not seeing it ;-)

Cheers,
BB

JW Player

User  
0 rated :

@Berrie,

JW FLV Media Player flashvars are s1.addVariable()

Adobe Flash Player parameters are sw.addParam()
bc.. <script type="text/javascript">
var s1 = new SWFObject("player.swf","ply","328","200","9","#FFFFFF");
s1.addParam("allowfullscreen","true");
s1.addParam("allowscriptaccess","always");
s1.addVariable("streamer", "rtmp://wild.west.web/livestreams");
s1.addVariable("file", "myStream.sdp");
s1.addVariable("image", "preview.jpg");
s1.write("container");
</script>


JW Player

User  
0 rated :

Hi Berrie,

May you post or send me by email (ethernode@gmail.com) your sdp sample by chance ? I also have a fastvdo waiting for this on my desk :)

Would be cool !

Thanks

JW Player

User  
0 rated :

Hi

i am trying to play the live Stream i have used the same code above

in this case Sound is coming properly but Video is not coming

Thanks

This question has received the maximum number of answers.