Kodi Community Forum
[RELEASE] Academic Earth Plugin - Free Video Lectures From The World's Top Scholars - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Video Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=154)
+---- Thread: [RELEASE] Academic Earth Plugin - Free Video Lectures From The World's Top Scholars (/showthread.php?tid=48270)

Pages: 1 2 3 4


[RELEASE] Academic Earth Plugin - Free Video Lectures From The World's Top Scholars - jbel - 2009-04-04

Current working version in Eden is 1.3.1


- Dan Dare - 2009-04-05

nice one!

Maybe you could upload the plugin (zip) at XBMCZone.com and the sources in the Google Code SVN and write up a repo.xml same as I did here so people can install your plugin through the SVN Repo Installer.


- w3__ - 2009-04-06

yaaayyy Big Grin Can you add to SVN Repo please?


Thanks! - badweather - 2009-04-06

Great plugin! Thank you very much for this.


- w3__ - 2009-04-07

Is this stuttery as hell for anyone except me? It's strange, if I pause for a long time and then unpause, it's fine.. Do I need to increase cache size or something?


- w3__ - 2009-04-07

(Xbox and recent t3ch by the way)


- BlueCop - 2009-04-07

w3__ Wrote:Is this stuttery as hell for anyone except me? It's strange, if I pause for a long time and then unpause, it's fine.. Do I need to increase cache size or something?

just out of curiosity what speed connection are you using?

you mentioned this about the adult swim plugin but i haven't experienced the issue. i just thought it might be a bandwidth issue if it is common across other plugins.


Thanks for the plugin. =) i love this stuff


- w3__ - 2009-04-07

Don't know, it's time warner cable... Has never been an issue before! Smile But thanks for the tip, I'll look into that!


- Dan Dare - 2009-04-07

@w3__
What build / version are you using? Had a similar issue with Flash movies with an older build and it seemed much better with a newer one. Grab an test 9.04 alpha and see how it goes there.


- w3__ - 2009-06-16

BTW jbel, This all works great now. Would love love LOVE to see a "Default Player" option and also fixing the encapsulation thing where I have to drill into a folder and then into another folder to play a piece of media.


- w3__ - 2009-06-16

Can I also recommend a 'play in sequence' button at the top of all actual media pages?


- Gamester17 - 2009-07-12

Love to see more plugins like this (or one single plugin for "OpenCourseWare" with for all academics lecture)
http://www.google.com/search?q=opencourseware

The Open University in the UK is for example a very nice site for lectures and videos courses like these:
http://www.open.ac.uk (Boxee does by the way have a python script as and "app" for this).
http://www.open.ac.uk/platform
http://www.youtube.com/ou
http://www.open.ac.uk/itunes

Nod


Course Directories Empty - buechler66 - 2009-10-24

Hi. I manually installed this plug-in...my first ever plug-in installation. It seems to be working up to the point where I select an actual course name. At this point it just takes me to what appears to be an empty folder with the 'back arrow' and '..'.

Am I doing something wrong? I guess I'm expecting it begin downloading the lecture, buffering to a point, and then playing it back.

Any suggestions?


Error in regular expression - abollaert - 2009-11-05

Hi,

you'll have to edit the plugin's default.py script a little bit. The regular expression that's responsible for loading the courses doesn't match anymore.

You'll have to change the function def load_lectures(url) to look like this:

Code:
def load_lectures(url):
    # displays lectures parsed from a course page
    # ex. URL: http://academicearth.org/courses/programming-abstractions
    response = get_response(url)
    # lectures pattern
    p = '<a class="thumb" href="/lectures/(.+?)" style="position: absolute;">\s*' \
        '<img src="/img/play-icon-small.png" width="21" height="21" alt="" border="0" class="play-icon" />\s*' \
        '<img src="(.+?)" alt=".+?" class="thumb-144" />\s*' \
        '</a>\s*' \
        '<a class="add" href=".+?">favorites</a>\s*' \
        '<div class="description">\s*' \
        '<h4><a href=".+?">(.+?)</a></h4>\s*' \
        '<p>' \
        '([^<]*)'
    matches = re.compile(p).findall(response)
    lectures = [(title, BASE_URL + '/lectures/' + lectureUrl,
                BASE_URL + thumb, desc) for lectureUrl, thumb, title,
                                            desc in matches]
    [add_dir(title, url, 4, thumb, desc) for title, url, thumb,
                                             desc in lectures]

Cheers,

Alex


- jiver - 2010-11-10

I installed it in Dharma beta4 but it doesn't work: I get a script error (addon.py).