Wowza Community

Need RTMP url for desktop and mobile devices...

Hi All,

Greetings!!

I am facing issue with rtmp URLs of viode on my site. I have used jwplayer on my site. When I check videos in iPhone then it works fine but on desktop devices it show me error shown in mentioned URL https://nimbus.everhelper.me/client/notes/share/20394/iP49K6GmirEkSrxZGxFA2zveB8Wzzos3/

I have used below mentioned code snippet:

jwplayer(“container”).setup({

autoplay : “true”,

sources: [{

file: “rtmp://[ip-address]/v/mp4:/movies/trailer/the-great-debaters-trailer.mp4”

},{

file: “/movies/trailer/the-great-debaters-trailer.mp4”

}],

controlbar: “bottom”,

primary: “html5”,

image: “http://www.filmlounge.com/design/start-trailer.jpg”,

width: “670”,

height: “376”

});

Any one can guide me why I am facing this issue.

Thanks in advance.

Try a URL like this:

rtmp://[ip-address]/v/_definst_/mp4:movies/trailer/the-great-debaters-trailer.mp4"

Salvadore

Hi,

Do you mean it works on the desktop but not on the IPhone? Because your JW Player setup is configured to play RTMP (the first file:) or progressive download (the second file:), which should be no problem on the desktop, and should fallback to the progressive download on devices, but that is probably not what you want, progressive download is not streaming. Take a look at the JW Player 6 examples in this article, which show how to do RTMP and HLS streaming.

Richad

Hi Salvadore,

Thanks for your kind response.

I have tried to apply suggested URL. Please have a below mentioned live site URL: http://www.filmlounge.com/film-details/the-great-debaters.

At mentioned URL we are facing issue this URL is working fine on iPhone but not working desktop devices and android devices.

Could you please advice how we can fix this issue?

Thanks in advance.