Michael Kacprzak wrote:
> Nothing - the same problem :/
>
> [...]
>
> Tell me, what's wrong? Maybe problem is with tvheadend server, because when I'm trying to open stream even via VLC it's loading enormous long time :/
You're subscribing the entire mux instead of the channel, i doubt jwplayer can handle that. If your browsers are from this decade, simply use html5-video:
<html>
<head>
<title>
Video
</title>
</head>
<body>
<video width="356" height="200" controls poster="channelicon.png" >
<source src="http://tvheadendserver:9981/stream/channel/*******?profile=webtv-vp8-vorbis-webm" type="video/webm" />
<em>Sorry, your browser doesn't support HTML5 video.</em>
</video>
</body>
</html>
insert the uuid from the channel (you can see it under configuration -> Channel/EPG -> Play-Button) instead of*****, done :)
/hp