AdultDVDEmpire Scraper
#31
Nah, I was just wondering why an old thread got bumped without an obvious bug report or anything else. And yeah, should be fixed. Just leave a comment or even better file a new bug report if the current release (9.11 Camelot) is not working for you.
Always read the online manual (wiki), FAQ (wiki) and search the forum before posting.
Do not PM or e-mail Team-Kodi members directly asking for support. Read/follow the forum rules (wiki).
Please read the pages on troubleshooting (wiki) and bug reporting (wiki) before reporting issues.
Reply
#32
how do you install this nice scraper please noobie here wanting to nstall im using dharma 10 on windows 7
Reply
#33
Quote:how do you install this nice scraper please noobie here wanting to nstall im using dharma 10 on windows 7

Look this post http://forum.xbmc.org/showpost.php?p=652...stcount=57
Reply
#34
thanks slux ur a life saver i had all this before some one broke in my house and stole my computer and i have to reset every thing up to dharma where as in camlot it was arady their do you know how to put showmix 2.5 on there as well i have not been able to get it to work
Reply
#35
Quote:do you know how to put showmix 2.5 on there

I didn't try this skin on my setup (running vanilla confluence),try to look here:

http://forum.xbmc.org/showpost.php?p=622093&postcount=8
Reply
#36
Perhaps I am doing something wrong, but I was attempting to use this scaper in Ember Media Manager and it does not retrieve any movie posters. Has anyone else had this issue? For the most part I've never had an issue with using scrapers in Ember that were written for EBMC.

Thanks
Reply
#37
Adult scrapers are now outside the official xbmc package,so they could have problems.Still there isn't either a repository where to get them...No
Reply
#38
slux Wrote:Adult scrapers are now outside the official xbmc package,so they could have problems.Still there isn't either a repository where to get them...No

Sure there is...find it here: http://code.google.com/p/xbmc-adult/
Reply
#39
Thx,I didn't see. Wink
Reply
#40
I posted this in another thread, but I figure it belongs here as well. I've been fixing/maintaining the adultdvdempire scraper for a while now. Seems to work a lot better than the cduniverse one I tried, although some searches can be harder because they often append "(1 DVD + 1 BluRay)" to feature names. At least the artwork doesn't have cduniverse's watermark on it.

Latest version here: http://www.mediafire.com/?c91c166cdu7l69a
Reply
#41
Minor update to increase search results (with possible side effect of some dupes):

http://www.mediafire.com/?uzllagm199l7ud6
Reply
#42
Star 
Don't know how to properly submit this, but the nfourl is incorrectly grabbed in the scraper. Should be like this:
Code:
<NfoUrl dest="3">
    <RegExp input="$$1" output="&lt;url&gt;http://www.\1&lt;/url&gt;" dest="3">
        <expression noclean="1">(adultdvdempire.com/\d+/\S+)</expression>
    </RegExp>
</NfoUrl>
I happen to use that feature a lot. Hope someone will add it to the next update.
Reply
#43
Recently this scraper stop working. I had a little time yesterday, so i fix it Wink There might be some errors cause i'm not so good with RegExp Confused

Paste this code to:
c:\Users\<user>\AppData\Roaming\XBMC\addons\metadata.movie.adultdvdempire.com\adultdvdempire.xml

Have fun Big Grin

Code:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<scraper framework="1.1" date="2010-06-07" name="Adult DVD Empire" content="movies" thumb="adultdvdempire.jpg" language="en">
    <NfoUrl dest="3">
        <RegExp input="$$1" output="&lt;url&gt;http://www.\1&lt;/url&gt;" dest="3">
            <expression noclean="1">(adultdvdempire.com/\d+/\S+)</expression>
        </RegExp>
    </NfoUrl>
    <CreateSearchUrl dest="3">
        <RegExp input="$$1" output="&lt;url&gt;http://www.adultdvdempire.com/AllSearch/Search?pageSize=20&view=list&q=\1&lt;/url&gt;" dest="3">
            <expression noclean="1" />
        </RegExp>
    </CreateSearchUrl>
    <GetSearchResults dest="6">
        <RegExp input="$$5" output="&lt;?xml version=&quot;1.0&quot; encoding=&quot;iso-8859-1&quot; standalone=&quot;yes&quot;?&gt;&lt;results&gt;\1&lt;/results&gt;" dest="6">
            <RegExp input="$$1" output="&lt;entity&gt;&lt;title&gt;\2&lt;/title&gt;&lt;url&gt;http://www.adultdvdempire.com/general/\1&lt;/url&gt;&lt;/entity&gt;" dest="5">
                <expression repeat="yes" trim="1,2">&lt;p class="title"&gt;&lt;a href="/([^"]*)" title="([^"]*)</expression>
            </RegExp>
            <expression noclean="1" />
        </RegExp>
    </GetSearchResults>
    <GetDetails dest="3">
        <RegExp input="$$5" output="&lt;details&gt;\1&lt;/details&gt;" dest="3">
            <RegExp input="$$1" output="&lt;thumb&gt;\1&lt;/thumb&gt;" dest="5+">
                <expression>&lt;div id="Boxcover"&gt;&lt;a href="([^"]*)"</expression>
            </RegExp>
            <RegExp input="$$1" output="&lt;thumb&gt;\1bh.jpg&lt;/thumb&gt;" dest="5+">
                <expression>&lt;div id="Boxcover"&gt;&lt;a href="([^"]*)h\.jpg"</expression>
            </RegExp>
            <RegExp input="$$1" output="&lt;title&gt;\1&lt;/title&gt;" dest="5+">
                <expression>&lt;h1&gt;(.*?)&lt;/h1&gt;</expression>
            </RegExp>
            <RegExp input="$$1" output="&lt;studio&gt;\1&lt;/studio&gt;" dest="5+">
                <expression>Studio&lt;/strong&gt;[^&gt;]*.([^&lt;]*)</expression>
            </RegExp>
            <RegExp input="$$1" output="&lt;year&gt;\1&lt;/year&gt;" dest="5+">
                <expression trim="1">Production Year&lt;/strong&gt;.([^&lt;]*)</expression>
            </RegExp>
            <RegExp input="$$1" output="&lt;tagline&gt;\1&lt;/tagline&gt;" dest="5+">
                <expression>Tagline"&gt;([^&lt;]*)</expression>
            </RegExp>
            
            <RegExp input="$$1" output="&lt;plot&gt;\1&lt;/plot&gt;" dest="5+">
                <expression>&lt;/p&gt;&lt;p&gt;(.*?)&lt;/p&gt;&lt;/div</expression>
            </RegExp>
            
            <RegExp input="$$1" output="&lt;actor&gt;&lt;name&gt;\2&lt;/name&gt;&lt;thumb&gt;http://cdn3a.adultempire.org/actors/\1.jpg&lt;/thumb&gt;&lt;/actor&gt;" dest="5+">
                <expression repeat="yes">&lt;a href="/(\d+)/[\w-]*?-pornstars.html" class="PerformerName"&gt;([^&lt;]+)</expression>
            </RegExp>
            <RegExp input="$$1" output="&lt;genre&gt;\1&lt;/genre&gt;" dest="5+">
                <expression repeat="yes">&lt;a href="http://www.adultdvdempire.com/[0-9]+/category/[^&gt;]*.([^&lt;]*)</expression>
            </RegExp>
            <RegExp input="$$1" output="&lt;runtime&gt;\1&lt;/runtime&gt;" dest="5+">
                <expression trim="1">Length&lt;/strong&gt;.([^&lt;]*)</expression>
            </RegExp>
            <RegExp input="$$1" output="&lt;mpaa&gt;\1&lt;/mpaa&gt;" dest="5+">
                <expression>Overall Rating: ([^&lt;]*)</expression>
            </RegExp>
            <RegExp input="$$1" output="&lt;director&gt;\3&lt;/director&gt;" dest="5+">
                <expression repeat="yes">&lt;a href="/([0-9]*)/(.*)-directors.html" class="PerformerName"&gt;([^&lt;]*)</expression>
            </RegExp>
            <expression noclean="1" />
        </RegExp>
    </GetDetails>
</scraper>
Reply
#44
I am having some problems with this - the scraper seems to have stopped working and comes up with the 'unable to connect to remote server' message... Is this because the scraper is down?

I wasn't able to see where the above code / mediafire download should be put on a Mac

Any help would be greatly appreciated
Reply
#45
(2012-06-08, 19:30)PureHemp Wrote: Recently this scraper stop working. I had a little time yesterday, so i fix it Wink There might be some errors cause i'm not so good with RegExp Confused
Thank you for the fix! Allt the adult scrapers have been broke for a while now. Awesome that you fixed AdultDVDEmpire Big Grin

gbuffry: go to your User library > Application Support > XBMC\addons\metadata.movie.adultdvdempire.com\adultdvdempire​.xml
Reply

Logout Mark Read Team Forum Stats Members Help
AdultDVDEmpire Scraper1