PDA

View Full Version : ppv movies not working in IPTV Stalker plugin



everlast
04-18-2016, 02:06 AM
Ppv are not working in stalker plugin also how many pages of vod do you get.thanks .

dara
04-18-2016, 02:41 AM
Thanks, will look into it. Good catch.

dara
04-18-2016, 03:53 AM
Found the issue... will fix in next version.

VoD is about 119 pages total.

couch potato
04-18-2016, 04:58 AM
yup!
you can fix it easily by yourself

1. open file: Kodi/addons/plugin.video.stalker/load_channels.py
2. find text:

'type' : 'itv' if (channel.find("ffmpeg") == -1) else 'vod',
3. replace it with:

'type' : 'vod' if ("ffmpeg /media" in channel) else 'itv',

http://s3.postimg.org/cysv9s16b/Screen_Shot_2016_04_18_at_11_54_14_AM.png


EDIT: Fixing typo

dara
04-18-2016, 05:54 AM
Better yet



'type' : 'itv' if (tmp != "") else 'vod',