Link to home
Start Free TrialLog in
Avatar of Mikrotiker
Mikrotiker

asked on

I need web-based video player for live stream

I have Wowza streaming engine with live video streaming to my local network , What I need is like JWplayer but I need it to work even without internet access (local network) which is not possible with JWplayer .
I prefer HTML5 player and I don't care if it's free or paid .
The player is dedicated for PC only and not for Mobile platform .
Avatar of Alexandre Simões
Alexandre Simões
Flag of Switzerland image

Hi mate,
I believe JWPlayer should be able to do the work; you just need to use the self-hosted player version.

I don't know Wowza but I did a quick search and found this page on their documentation.

Did you try this? I don't see why it wouldn't work.

Cheers,
Alex
Avatar of Mikrotiker
Mikrotiker

ASKER

This is why it wouldn't work :
<script>jwplayer.key = "[jwplayer-key]";</script>

it's need to authenticate the key with the server so it would need internet access all the time , so in my case it's not possible because i'm working on the local network .
Yeah, true.

So what about the HTML5 <video> tag?
Of course this will only work on browsers that support this but if you're playing it offline I guess you have control over your environment.
https://www.wowza.com/forums/content.php?726-How-to-play-video-using-the-HTML5-video-tag
<html>
  <head> 
    <title>HTML5 Live Streaming Test</title> 
  </head> 
  <body> 
    <video width="640" height="400" controls="controls" src="http://[wowza-ip-address]:1935/live/myStream/playlist.m3u8">
    </video> 
  </body> 
</html>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Mikrotiker
Mikrotiker

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
No other working solution was offered