Release [RELEASE] XOT-Uzg.v3.3.5 (formerly "Uitzendinggemist") script

  Thread Rating:
  • 2 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
Thiele Offline
Member
Posts: 71
Joined: Oct 2011
Reputation: 0
Post: #1201
Basje Wrote:I watched it on ATV2 too, no issues. I just wondered about Windows. The logfile does not show any XOT issues. XBMC starts the steam and then had some issues. Try searching other posts about m3u8 stream problems.

Could you please have a log at both log files, and see from a programmer perspective what is going on? Makes it more easier for me to find a solution or ask the XBMC guys to help me. Thanks.

http://pastebin.com/vitT4Qqv

http://pastebin.com/vn8TXxN7

Platform: ATV2 iOS 5.0.1 / 4.4.4 | XBMC: 11.0 Eden Beta 2 | Skin: Aeon Nox 2.0
find quote
canadave Offline
Posting Freak
Posts: 761
Joined: Jul 2011
Reputation: 15
Location: Nova Scotia, Canada
Post: #1202
It's not just a function of the "maximum bitrate" you've got set in the streaming settings, is it, Thiele? Just poking in the dark here. I set up my Dutch friends, and when watching iRTL channels originally, with the default max bitrate of 2000, it was buffering/stuttering quite a bit (without the "Buffering..." dialog--just was choppy). When we lowered it from 2000, it worked fine.

- ATV2 4.4.4 (iOS 5.0.1) build 9A406a, running Frodo (final version)
- Macbook Pro, running OSX Mountain Lion
- Skin: reFocus
- Connecting to MySQL database on Synology DS411+ NAS via NFS.
find quote
canadave Offline
Posting Freak
Posts: 761
Joined: Jul 2011
Reputation: 15
Location: Nova Scotia, Canada
Post: #1203
Also, I've got a question for Basje Smile I just found this site (well, someone else found it, but I noticed it!): http://wwitv.com/television/148.htm

...which shows free Netherlands live TV streams. Now, I know most of them are already in XOT-UDG, but I believe some aren't, if I'm not mistaken. Is there any way for you to add the missing ones (or for me to add them manually myself)?

cheers, thanks--your addon has already made my Dutch friends extremely happy to be connected to "back home" Smile

- ATV2 4.4.4 (iOS 5.0.1) build 9A406a, running Frodo (final version)
- Macbook Pro, running OSX Mountain Lion
- Skin: reFocus
- Connecting to MySQL database on Synology DS411+ NAS via NFS.
find quote
Basje Offline
Skilled Python Coder
Posts: 984
Joined: Jul 2005
Reputation: 4
Post: #1204
canadave Wrote:Also, I've got a question for Basje Smile I just found this site (well, someone else found it, but I noticed it!): http://wwitv.com/television/148.htm

...which shows free Netherlands live TV streams. Now, I know most of them are already in XOT-UDG, but I believe some aren't, if I'm not mistaken. Is there any way for you to add the missing ones (or for me to add them manually myself)?

cheers, thanks--your addon has already made my Dutch friends extremely happy to be connected to "back home" Smile
I can check after the weekend. Could you add an enhancement request on the Google Code page of XOT-Uzg.v3.

find quote
canadave Offline
Posting Freak
Posts: 761
Joined: Jul 2011
Reputation: 15
Location: Nova Scotia, Canada
Post: #1205
sure thing, will do (at least I'll try--never done it before, but I'm sure I can figure it out). Thanks so much! Smile

- ATV2 4.4.4 (iOS 5.0.1) build 9A406a, running Frodo (final version)
- Macbook Pro, running OSX Mountain Lion
- Skin: reFocus
- Connecting to MySQL database on Synology DS411+ NAS via NFS.
find quote
svslen Offline
Junior Member
Posts: 2
Joined: Feb 2012
Reputation: 0
Post: #1206
TV4 Play: No playable files found in XOT 3.2.12 - - This is how i fixed it.

I have found 2 errors in the Phyton Script ”chn_tv4se.py”
Just connect to your XBMC installation with WinScp or similar program and modify the /private/var/mobile/Library/Preferences/XBMC/addons/net.rieter.xot.channel.se/tv4se/chn_tv4se.py

Don’t forget to take a backup of that file(before you edit), just in case…

First of all change this line: (this will save us one redirect, not actually an error.)
self.mainListUri = "http://www.tv4play.se/a_till_o_lista"
To
self.mainListUri = "http://www.tv4play.se/alla_program"

Then we need to modify the search URL a little bit.
To fix the misleading URL path, just remove one of the “/search” in this line:

url = "http://www.tv4play.se/search/search?rows=200&order=desc&categoryids=%s&sorttype=date&start=0" % (programId,)
To
url = "http://www.tv4play.se/search?rows=200&order=desc&categoryids=%s&sorttype=date&start=0" % (programId,)

Hope someone finds this information useful...
find quote
Basje Offline
Skilled Python Coder
Posts: 984
Joined: Jul 2005
Reputation: 4
Post: #1207
svslen Wrote:TV4 Play: No playable files found in XOT 3.2.12 - - This is how i fixed it.

I have found 2 errors in the Phyton Script ”chn_tv4se.py”
Just connect to your XBMC installation with WinScp or similar program and modify the /private/var/mobile/Library/Preferences/XBMC/addons/net.rieter.xot.channel.se/tv4se/chn_tv4se.py

Don’t forget to take a backup of that file(before you edit), just in case…

First of all change this line: (this will save us one redirect, not actually an error.)
self.mainListUri = "http://www.tv4play.se/a_till_o_lista"
To
self.mainListUri = "http://www.tv4play.se/alla_program"

Then we need to modify the search URL a little bit.
To fix the misleading URL path, just remove one of the “/search” in this line:

url = "http://www.tv4play.se/search/search?rows=200&order=desc&categoryids=%s&sorttype=date&start=0" % (programId,)
To
url = "http://www.tv4play.se/search?rows=200&order=desc&categoryids=%s&sorttype=date&start=0" % (programId,)

Hope someone finds this information useful...
Or you update to the latest TV4 play channel via the XOT repository and you get the fixed channel that was posted over a week ago! No need to edit stuff! Please install the Add-on via the repository.

The self.mainListUri will do an automatic redirect and will show items. The url=... is not used in the most recent channel.

find quote
svslen Offline
Junior Member
Posts: 2
Joined: Feb 2012
Reputation: 0
Post: #1208
Basje Wrote:Or you update to the latest TV4 play channel via the XOT repository and you get the fixed channel that was posted over a week ago! No need to edit stuff! Please install the Add-on via the repository.

The self.mainListUri will do an automatic redirect and will show items. The url=... is not used in the most recent channel.

That is great news, really i didnt read the manual carefully enough, did my own troubleshooting, i have now installed the repository, and after reebot i could get a new version of the swedish files. Worked like a charm, Great work you have done here.
find quote
Basje Offline
Skilled Python Coder
Posts: 984
Joined: Jul 2005
Reputation: 4
Post: #1209
svslen Wrote:That is great news, really i didnt read the manual carefully enough, did my own troubleshooting, i have now installed the repository, and after reebot i could get a new version of the swedish files. Worked like a charm, Great work you have done here.

You're welcome. Next version will include a check and will inform people that do not have the repository installed to install it.

find quote
anandus Offline
Junior Member
Posts: 46
Joined: Nov 2008
Reputation: 0
Post: #1210
Since not too long I get in a buffering 'loop'. As soon as I try to watch something on UitzendingGemist it starts and then immediately 'hangs' while (apparently) buffering. For ever.
Does anyone else also has this problem? I didn't change any settings that I know of.
find quote
Post Reply