• 1
  • 27
  • 28
  • 29(current)
  • 30
  • 31
  • 52
IPTVSimple PVR-addon with XMLTV EGP
(2013-10-30, 10:32)Cassiel Wrote: Any chance of a OS X build? Can't find one…

https://db.tt/7cbZ3JrZ
(2013-10-20, 13:32)amm8990 Wrote: That is not the answer, it is simple http stream. I am interested why the are not working, it shows up that there is a bug as @afedchin said or simple the problem with the Connection:keep-alive and Connection:close header. The problem can be fixed, and the following video on yt confirms that
http://www.youtube.com/watch?v=2wl8Ahh6RM4

Anyway, if you don't believe me, try using the redirected URL directly, that also may indecate in the direction that xbmc does not handle 302 responce correctly

Code:
#EXTINF:-1  tvg-id="Nettv" tvg-name="nettv" tvg-logo="Nettv", Nettv
http://185.20.36.233:8080/stream/?fw=true&route=at1_1&rule=null&sp=nettvplus&channel=nettvinfoint&stream=1mb&u=user1&b=3&player=http

The only problem is that you cannot always use direct URL, most of the stream require authentication, and when correct username and password is provided the server returns some kind of temporal URL which is probably created using username and password parameters (kind of hash value).

Unfortunately IPTV doesn't handle authentication or redirect url's. A simple solution would be to write a script that takes care of the authentication for you and returns a m3u8 (HLS) type response back to XBMC for it to resolve.

So your m3u file would be like:
Code:
#EXTINF:-1  tvg-id="Nettv" tvg-name="nettv" tvg-logo="Nettv", Nettv
http://<some ip>/yourscript?channel=nettv<or any other parameter you need passed>

Your script would do the necessary authentication against Net TV and retrieve the correct playback url. Take this url and format it into a m3u8 format and send it back to IPTV. Theortically this should work.
I am not able to run the IPTVSimple PVR-addon on XBMC BOXEE BOX version (based on the Ghotam) error while activate the PVR, could someone help?
Hello guys,
to hav semi-working HLS playing (m3u8 streams), there is need that m3u8 chunk playlist will contain full url of ts chunks, because if not, XBMC will try to find it localy, so that's BAD.

BAD:
Code:
#EXTM3U
#EXT-X-TARGETDURATION:10
#EXT-X-MEDIA-SEQUENCE:2018845
#EXTINF:10,
/live/get_chunk.php?sid=&f=/live/stv1/mq_stv1-1383220223-2018845.ts
#EXTINF:10,
/live/get_chunk.php?sid=&f=/live/stv1/mq_stv1-1383220233-2018846.ts
#EXTINF:10,
/live/get_chunk.php?sid=&f=/live/stv1/mq_stv1-1383220243-2018847.ts
#EXTINF:10,
/live/get_chunk.php?sid=&f=/live/stv1/mq_stv1-1383220253-2018848.ts


GOOD:
Code:
#EXTM3U
#EXT-X-TARGETDURATION:10
#EXT-X-MEDIA-SEQUENCE:2018999
#EXTINF:10,
http://192.168.241.2/live/get_chunk.php?sid=&f=/live/stv1/mq_stv1-1383222068-2018999.ts
#EXTINF:10,
http://192.168.241.2/live/get_chunk.php?sid=&f=/live/stv1/mq_stv1-1383222085-2019000.ts
#EXTINF:10,
http://192.168.241.2/live/get_chunk.php?sid=&f=/live/stv1/mq_stv1-1383222095-2019001.ts
#EXTINF:10,
http://192.168.241.2/live/get_chunk.php?sid=&f=/live/stv1/mq_stv1-1383222105-2019002.ts

If we put to playlist m3u URL, that produced GOOD one chunklist, channel will play. BUT, only that 4 chunks, that's means, XBMC will not refresh chunk list. And I DO NOT KNOW WHY.

My log form XBMC is here:
http://pastebin.com/vuDef93t

Important things starting at line 819 to 825 then 897, and ends on 1099.

Any idea?
Can someone help me please, how can i switch my channel with a remote without going back or stopping anything. i'm using IPTVSimple PVR-addon on XBMC ( win 7 x64 ).

thank you guys already for any help!
(2013-10-31, 22:12)maxwel Wrote: Can someone help me please, how can i switch my channel with a remote without going back or stopping anything. i'm using IPTVSimple PVR-addon on XBMC ( win 7 x64 ).

thank you guys already for any help!

You have to tell us which skin you use?
What version of IPTVSimple PVR-addon ? You must have 1.8.1
With the new Confluence Skin switching channels work with the cursor up and down in full screen on keybord
,even a tiny "RasPi" works beautifully with the skins, change the channel via hdmi remote goes through forvad button on TV remote and remote xbmc for android
My Advice to you,change skin (Everithing will work as you wish ) Wink


(2013-10-31, 17:23)san77 Wrote: Hello guys,
to hav semi-working HLS playing (m3u8 streams), there is need that m3u8 chunk playlist will contain full url of ts chunks, because if not, XBMC will try to find it localy, so that's BAD.
First you must try your adress on PC VLC-Player or browser
Your adress must look somthing like this excamples.
Code:
http://192.168.241.2/live/get_chunk.php?sid=?f=/live/stv1/mq_stv1.playlist.m3u8
http://192.168.241.2/live/get_chunk.php?sid=?f=/live/stv1/mq_stv1.media.m3u8
http://192.168.241.2/live/get_chunk.php?sid=?f=/live/stv1/mq_stv1.m3u8
http://192.168.241.2/live/get_chunk.php?sid=?f=/live/stv1/mq_stv1
XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
(2013-11-01, 12:54)Angelinas Wrote: First you must try your adress on PC VLC-Player or browser
Your adress must look somthing like this excamples.
Code:
http://192.168.241.2/live/get_chunk.php?sid=?f=/live/stv1/mq_stv1.playlist.m3u8
http://192.168.241.2/live/get_chunk.php?sid=?f=/live/stv1/mq_stv1.media.m3u8
http://192.168.241.2/live/get_chunk.php?sid=?f=/live/stv1/mq_stv1.m3u8
http://192.168.241.2/live/get_chunk.php?sid=?f=/live/stv1/mq_stv1
At 1st, u did not get what i ment.

I have playlist for IPTVSimple, which is m3u, that playlist is loaded well.
Code:
#EXTM3U
#EXTINF:-1 tvg-name="stv1" group-title="Slovenske",STV1-MovioStream
http://192.168.241.2/live/get_playlist_astb.php?did=38223452&ch=stv1&user=438742938
#EXTINF:-1 tvg-name="stv2" group-title="Slovenske",STV2-MovioStream
http://192.168.241.2/live/get_playlist_astb.php?did=38223452&ch=stv2&user=438742938

So that playlist is loaded well. When i chose for example channel STV1. there is generated m3u8 (HLS) chunk list, that should be refreshed by player periodicaly to get new commands about strem chunks, and so. BUT, SIMPLEIPTV or XBMC or FFMPEG ( i do not know who's fault it is) do not refresh m3u8 chnk list. it simply play 4 chunks that it got first time, it will play it for approx 40 seconds (4 times 10sec chunk) and ends.
That's an core of problem. Not an playlist for IPTVSimple.

BTW: if i open http://192.168.241.2/live/get_playlist_a...=438742938 in VLC, it plays smoothly, witouth problems. I have native app for android that plays that streams also well, but i want ti integrate that streams to XBMC.
Hoi Angelinas, thank you for your quick reply . i'm using Aeon Nox and IPTVSimple 1.6.1 . maybe that was the problem, i'll try to upgrade .
Hello!

Win7 64 bit + XBMC + IPTVSimple + Webgrab works perfectly!
Edit m3u 4 hours.
Edit confog.xml 1 hour.
In Hungary, it works!
Anyone has a Linux compiled version of the plugin?
Thanks¡
Hoi Angelinas, I'm using now IPTVSimple 1.8.1 but i still have the same problem!
(2013-11-05, 21:27)maxwel Wrote: Hoi Angelinas, I'm using now IPTVSimple 1.8.1 but i still have the same problem!
Try with android aplikation for Phone (Official XBMC Remote)
https://play.google.com/store/apps/detai...oid.remote
Just sett your Ip address in settings of apk,with your skin Aon if not work try to change skin in confluance new.
http://forum.xbmc.org/showthread.php?tid=147628

Changig channel works for me on remote screen with button left and right from pause.
XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
I tried installing iptv simple 1.8.1 in my android phone (HTC One) Got an error while trying: "Dependencies not met".
Can someone please help me to resolve this issues?

thanks.
Hoi Angelinas, thnks for help.. i'll try that 2morrow ..
Olá amigos, sou novo no grupo. Uso IPTVSimple no XBMC Gothan para Arm7, consegui configurar a lista .m3u com os canais e estão funcionando ok, Em relação ao EPG gostaria de saber se é possível configurar através de um serviço de internet tipo esse: http://www.hagah.com.br/programacao-tv/j...eradora=15 e como faço para fazer isso. Obrigado a todos!
  • 1
  • 27
  • 28
  • 29(current)
  • 30
  • 31
  • 52

Logout Mark Read Team Forum Stats Members Help
IPTVSimple PVR-addon with XMLTV EGP14