E everlast New member Apr 15, 2016 4 0 0 yes I do Apr 17, 2016 #1 Apr 17, 2016 #1 Ppv are not working in stalker plugin also how many pages of vod do you get.thanks .
dara Fire From Within Nov 23, 2014 10,281 70 48 yes i do Apr 17, 2016 #2 Apr 17, 2016 #2 Thanks, will look into it. Good catch.
dara Fire From Within Nov 23, 2014 10,281 70 48 yes i do Apr 17, 2016 #3 Apr 17, 2016 #3 Found the issue... will fix in next version. VoD is about 119 pages total.
C couch potato Patato TV Feb 1, 2016 274 16 0 who cares ?! Apr 18, 2016 #4 Apr 18, 2016 #4 yup! you can fix it easily by yourself 1. open file: Kodi/addons/plugin.video.stalker/load_channels.py 2. find text: Code: 'type' : 'itv' if (channel.find("ffmpeg") == -1) else 'vod', 3. replace it with: Code: 'type' : 'vod' if ("ffmpeg /media" in channel) else 'itv', EDIT: Fixing typo Last edited: Apr 18, 2016
yup! you can fix it easily by yourself 1. open file: Kodi/addons/plugin.video.stalker/load_channels.py 2. find text: Code: 'type' : 'itv' if (channel.find("ffmpeg") == -1) else 'vod', 3. replace it with: Code: 'type' : 'vod' if ("ffmpeg /media" in channel) else 'itv', EDIT: Fixing typo
dara Fire From Within Nov 23, 2014 10,281 70 48 yes i do Apr 18, 2016 #5 Apr 18, 2016 #5 Better yet Code: 'type' : 'itv' if (tmp != "") else 'vod',