[RELEASE] eBaumsWorld.com

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
AddonScriptorDE Offline
Fan
Posts: 310
Joined: May 2012
Reputation: 14
Location: Germany
Post: #1
Hi,
this is an add-on for watching videos from eBaum's World.
You can install it from the xbmc.org eden repo.

cheers,
asde
(This post was last modified: 2012-07-09 13:11 by AddonScriptorDE.)
find quote
schlameel Offline
Junior Member
Posts: 7
Joined: Mar 2012
Reputation: 0
Post: #2
About a week ago, eBaumsWorld.com must have been updated and that update broke the addon. The fix is simple.

On line 38 change 'mediaListingList' to 'mediaListingGrid':

Code:
content = content[content.find('<ul class="mediaListingList" id="mediaList">'):]

changes to:

Code:
content = content[content.find('<ul class="mediaListingGrid" id="mediaList">'):]

And on line 40 change 'mediaListItem">' to 'mediaGridItem ">'. IMPORTANT The space between 'mediaGridItem' and the '">' is required. Or drop the '">':

Code:
spl=content.split('<li class="mediaListItem">')

changes to:

Code:
spl=content.split('<li class="mediaGridItem ">')
find quote
alibaba011 Offline
Junior Member
Posts: 42
Joined: Dec 2011
Reputation: 0
Post: #3
thank you for the fix. it is working great now.
find quote
itpro1667 Online
Junior Member
Posts: 7
Joined: Jun 2011
Reputation: 0
Post: #4
Fix worked for me as well thanks Smile

I love this Addon btw I used to be on ebaumsworld long before youtube was ever around... it has sentimental value to me so extra thanks to the creator of this Smile
find quote
cami Offline
Senior Member
Posts: 111
Joined: Aug 2007
Reputation: 0
Post: #5
awesome, worked here too.

the file he's referring to is

(Windows 7)
C:\Users\username\AppData\Roaming\XBMC\addons\plugin.video.ebaumsworld_com\defau​lt.py
find quote
AddonScriptorDE Offline
Fan
Posts: 310
Joined: May 2012
Reputation: 14
Location: Germany
Post: #6
(2012-12-27 23:55)schlameel Wrote:  About a week ago, eBaumsWorld.com must have been updated and that update broke the addon. The fix is simple.

On line 38 change 'mediaListingList' to 'mediaListingGrid':

Code:
content = content[content.find('<ul class="mediaListingList" id="mediaList">'):]

changes to:

Code:
content = content[content.find('<ul class="mediaListingGrid" id="mediaList">'):]

And on line 40 change 'mediaListItem">' to 'mediaGridItem ">'. IMPORTANT The space between 'mediaGridItem' and the '">' is required. Or drop the '">':

Code:
spl=content.split('<li class="mediaListItem">')

changes to:

Code:
spl=content.split('<li class="mediaGridItem ">')

Thanks Smile

I included schlameels and some other fixes/changes to the repo (eden/frodo)!
find quote