• 1
  • 20
  • 21
  • 22(current)
  • 23
  • 24
  • 27
XBMC Adult 18+ Add-on Repository
(2017-03-12, 13:53)dquaid Wrote: Categories and HD are fixed in 1.7.156
Great!
Thanks for all your work on this add-on.
Reply
(2017-03-12, 20:34)vashiel Wrote: That's the second time they changed their site. The correct URL to the video was in a hidden DIV Container. You can't see the link in the sourcecode so Videodevil can't. If they change it completely to hidden DIV Container and remove SD from mobile, PD will not work anymore or you know a way to unhide those DIV Containers.


The only thing i don't understand is, why they are changing it back to old code. Maybe just a test?

Cheers
Vashiel

I don't think we can unhide from python.

Maybe the new code didn't work on some platform or had some other issue and they reverted ...
Reply
(2017-03-14, 13:32)dquaid Wrote:
(2017-03-12, 20:34)vashiel Wrote: That's the second time they changed their site. The correct URL to the video was in a hidden DIV Container. You can't see the link in the sourcecode so Videodevil can't. If they change it completely to hidden DIV Container and remove SD from mobile, PD will not work anymore or you know a way to unhide those DIV Containers.


The only thing i don't understand is, why they are changing it back to old code. Maybe just a test?

Cheers
Vashiel

I don't think we can unhide from python.

Maybe the new code didn't work on some platform or had some other issue and they reverted ...

Maybe there is a way... PhantomJS in combination with selenium to act like a "real" browser in python.

Like as a example here:
http://yizeng.me/2014/04/08/get-text-fro...webdriver/

When more and more Porn Sites turn to HTML5 only we could see more of these hidden containers.
Reply
(2017-03-21, 22:07)vashiel Wrote:
(2017-03-14, 13:32)dquaid Wrote:
(2017-03-12, 20:34)vashiel Wrote: That's the second time they changed their site. The correct URL to the video was in a hidden DIV Container. You can't see the link in the sourcecode so Videodevil can't. If they change it completely to hidden DIV Container and remove SD from mobile, PD will not work anymore or you know a way to unhide those DIV Containers.


The only thing i don't understand is, why they are changing it back to old code. Maybe just a test?

Cheers
Vashiel

I don't think we can unhide from python.

Maybe the new code didn't work on some platform or had some other issue and they reverted ...

Maybe there is a way... PhantomJS in combination with selenium to act like a "real" browser in python.

Like as a example here:
http://yizeng.me/2014/04/08/get-text-fro...webdriver/

When more and more Porn Sites turn to HTML5 only we could see more of these hidden containers.
Looking at that page videodevil would be able to access the hidden <p> without any issues as it ignores style='display:none'
Reply
Looks like phub have changed something again. No videos appear to play at the moment.
Reply
(2017-02-11, 15:33)morty420 Wrote: As reported by elra already, I too see issues with the "Search" box popping up when it should not be. Not sure if it happens on only specific sites or not. After searching and picking a video to play, when selecting the video it starts playing in the background and the search window is brought back to the front with the same term used in initial search pre-populated.

I can confirm this on Android 5.1 (Clean install) with Kodi 17.

When using search on any site, it starts as it used to you enter a search criteria and it searches.
When you select a video from the search results it may ask for quality and then opens the search dialog again, and lets the video play in the background.

When exiting a video (video ended, or you press "stop") the "enter search criteria" dialog pops up again (prefilled) and you have to press "ok" again to go back to the search results (from your original search)

If during this process you press exit/stop a bit too vigorously you exit the addon completely (addon overview of kodi is displayed)

It started doing this when I upgraded to Kodi 17, maybe the search form API has changed a bit? On Kodi 16 it worked fine.

Great addon btw Big GrinAngel
Reply
(2017-03-24, 20:20)KingsCross Wrote: Looks like phub have changed something again. No videos appear to play at the moment.

Fixed
Reply
(2017-03-28, 19:55)Nixxor Wrote:
(2017-02-11, 15:33)morty420 Wrote: As reported by elra already, I too see issues with the "Search" box popping up when it should not be. Not sure if it happens on only specific sites or not. After searching and picking a video to play, when selecting the video it starts playing in the background and the search window is brought back to the front with the same term used in initial search pre-populated.

I can confirm this on Android 5.1 (Clean install) with Kodi 17.

When using search on any site, it starts as it used to you enter a search criteria and it searches.
When you select a video from the search results it may ask for quality and then opens the search dialog again, and lets the video play in the background.

When exiting a video (video ended, or you press "stop") the "enter search criteria" dialog pops up again (prefilled) and you have to press "ok" again to go back to the search results (from your original search)

If during this process you press exit/stop a bit too vigorously you exit the addon completely (addon overview of kodi is displayed)

It started doing this when I upgraded to Kodi 17, maybe the search form API has changed a bit? On Kodi 16 it worked fine.

Great addon btw Big GrinAngel
Was able to reproduce but not sure how to fix Confused

Thanks for the compliment.
Reply
(2017-03-29, 15:20)dquaid Wrote: Was able to reproduce but not sure how to fix Confused
Thanks for the compliment.

I have exactly one day experience in python programming so you can kind of guess my level... Wink
But I took the liberty to take a look and I have a question/suggestion

in this part:

Code:
try:
                            curr_phrase = urllib.unquote_plus(
                                    addon.getSetting('curr_search'))
                        except:
                            addon.setSetting('curr_search', '')
                        search_phrase = self.getKeyboard(default=curr_phrase,
                                heading=__language__(30102))
                        if search_phrase == '':
                            return -1
addon.setSetting('curr_search', search_phrase)

Doesn't the "search_phrase = self.getKeyboard" part needs to be indented one "tab" more so the keyboard only is called when the "getSetting" fails?
Reply
(2017-03-29, 17:48)Nixxor Wrote:
(2017-03-29, 15:20)dquaid Wrote: Was able to reproduce but not sure how to fix Confused
Thanks for the compliment.

I have exactly one day experience in python programming so you can kind of guess my level... Wink
But I took the liberty to take a look and I have a question/suggestion

in this part:

Code:
try:
                            curr_phrase = urllib.unquote_plus(
                                    addon.getSetting('curr_search'))
                        except:
                            addon.setSetting('curr_search', '')
                        search_phrase = self.getKeyboard(default=curr_phrase,
                                heading=__language__(30102))
                        if search_phrase == '':
                            return -1
addon.setSetting('curr_search', search_phrase)

Doesn't the "search_phrase = self.getKeyboard" part needs to be indented one "tab" more so the keyboard only is called when the "getSetting" fails?

Nope otherwise search_phrase only gets set if there is an exception and it is used right after.
You can try it and if you make the change you suggest you can't search any more. If you find something that works please share
Reply
Hey guys,
I am using kodi 16.1 on android box and bitporno isnt working. But it seems to work on kodi 17 on my phone. Any reason? Thank you
Reply
(2017-03-30, 15:44)dquaid Wrote: Nope otherwise search_phrase only gets set if there is an exception and it is used right after.
You can try it and if you make the change you suggest you can't search any more. If you find something that works please share
You are right, I thought of that later after I posted it...

But! I just installed Kodi 17.1 and the issue seems to be resolved!
It's not only this addon, in my experience kodi "refreshed" all lists when entering them (also when going "back" from a sub-list).
That was probably the cause of the issue.
Reply
(2017-04-02, 11:23)Nixxor Wrote:
(2017-03-30, 15:44)dquaid Wrote: Nope otherwise search_phrase only gets set if there is an exception and it is used right after.
You can try it and if you make the change you suggest you can't search any more. If you find something that works please share
You are right, I thought of that later after I posted it...

But! I just installed Kodi 17.1 and the issue seems to be resolved!
It's not only this addon, in my experience kodi "refreshed" all lists when entering them (also when going "back" from a sub-list).
That was probably the cause of the issue.
Yes your're right, fixed in 17.1 !
Reply
dquaid - Do you know if there is an issue with the recommended section on phub? It used to offer recommendations but for a few months now its a bit of a mess and just shows the same completely unrelated videos. I don't know whether doing a complete reinstall of kodi will solve the problem or if its something phub changed with their other recent changes, in which case a reinstall will be pointless. Thanks.
Reply
The next page option of pornhub did just stop working for me, yesterday I didn't see this problem. Perhaps pornhub did change their website for the xxx time...
An other idea, I am an user of the pornhub website, but I can't login with my username/password making use of videodevil. It would be great making use of my own pornhub profile... favourite pornstars, my own playlists.
Reply
  • 1
  • 20
  • 21
  • 22(current)
  • 23
  • 24
  • 27

Logout Mark Read Team Forum Stats Members Help
XBMC Adult 18+ Add-on Repository1