Página 1 de 3

Anadir nuevo sito web

Publicado: 21 Dic 2013, 20:41
por bogdanioanliviu
Buenas
E intentando seguir el tutorial para anadir un nuevo sitio web en pelisalacarta pero no intiendo muy bien la parte de crear la lista de peliculas .
lo que stoy intentando es añadir
cinemax.rs
que no tiene las peliculas en un table y td que los tiene en div.
E utilizado como ejemplo el de unsoloclic que si que es muy parecido. E conseguido que me entre en el nuevo sitio, me insena las peliculas en la primera pagina.

Si me puede alguien echear una mano con como poner pagina siguente y si hay dos posibilidades de video solo me coje la por defecto y la segunda no.
Voy a poner de momento lo que he echo.

Código: Seleccionar todo

def mainlist(item):
    logger.info("[filmenoi.py] mainlist")
    item.url="http://cinemaxx.rs/newvideos.html";
    return novedades(item)

def novedades(item):
    logger.info("[filmenoi.py] novedades")
    itemlist = []
	
    # Descarga la página
    data = scrapertools.cachePage(item.url)
	
    #patron  = '<div class="home_posts">[^<]+'
    #patron += '<h2 class="title"><a href="([^"]+)" rel="bookmark" title="[^"]+">([^<]+)</a></h2>[^<]+'
    #patron += '<div class="home_posts_shadow"></div>[^<]+'
    #patron += '<div class="home_posts_thumbnail">[^<]+'
    #patron += '<a[^<].*?+<img.*?src="([^"]+).*?"'
	
	
    #patron  = '<ul class="pm-ul-browse-videos thumbnails" id="pm-grid">[^<]+'
    patron = '<li>[^<]+'
    patron += '<div class="pm-li-video">[^<]+'
    patron += '.*?<a href="([^"]+)".*?[^<]+<img src="([^"]+)" alt="([^"]+)".*?</li>'
    matches = re.compile(patron,re.DOTALL).findall(data)
    if DEBUG: scrapertools.printMatches(matches)
	
    for scrapedurl,scrapedthumbnail,scrapedtitle in matches:
        scrapedplot = ""
        #if (DEBUG): logger.info("title=["+scrapedtitle+"], url=["+scrapedurl+"], thumbnail=["+scrapedthumbnail+"]")
        if (DEBUG): logger.info("url=["+scrapedurl+"], thumbnail=["+scrapedthumbnail+"], title=["+scrapedtitle+"]")
        itemlist.append( Item(channel=__channel__, action="findvideos", title=scrapedtitle , url=scrapedurl , thumbnail=scrapedthumbnail , plot=scrapedplot , folder=True) )
    
    '''
    <a href="http://unsoloclic.info/page/2/" >&laquo; Peliculas anteriores</a>
	<a href="http://www.filme-net.com/page/2" class="inactive">2</a>
    '''
    patron  = '<li[^<]+<a href="([^"]+)"class="[^<]">2</a></li>'
    matches = re.compile(patron,re.DOTALL).findall(data)
    if DEBUG: scrapertools.printMatches(matches)

    for match in matches:
        scrapedtitle = ">> Página siguiente"
        scrapedplot = ""
        scrapedurl = urlparse.urljoin(item.url,match)
        scrapedthumbnail = ""
        if (DEBUG): logger.info("url=["+scrapedurl+"], thumbnail=["+scrapedthumbnail+"], title=["+scrapedtitle+"]")
        itemlist.append( Item(channel=__channel__, action="novedades", title=scrapedtitle , url=scrapedurl , thumbnail=scrapedthumbnail , plot=scrapedplot , folder=True) )

    return itemlist
Esto es lo que he modificado en comparacion con el .py de unsoloclic
Aver si alguien se anima y me da unas pistas.

A continuacion os adjunto lo que sale en el log cuando pulso en la nueva entrada:

Código: Seleccionar todo

11:14:45 T:9452  NOTICE: Thread XBPyThread start, auto delete: false
11:14:45 T:9452  NOTICE: -->Python Interpreter Initialized<--
11:14:45 T:9452  NOTICE: PLATFORM_NAME=xbmceden
11:14:45 T:9452  NOTICE: [config.py] xbmceden config
11:14:45 T:9452  NOTICE: [config.py] runtime path = C:\Users\bogdan\AppData\Roaming\XBMC\addons\plugin.video.pelisalacarta
11:14:45 T:9452  NOTICE: [config.py] data path = C:\Users\bogdan\AppData\Roaming\XBMC\userdata\addon_data\plugin.video.pelisalacarta\
11:14:45 T:9452  NOTICE: [config.py] temp path = C:\Users\bogdan\AppData\Roaming\XBMC\cache\test
11:14:45 T:9452  NOTICE: [default.py] pelisalacarta init...
11:14:45 T:9452  NOTICE: [launcher.py] run
11:14:45 T:9452  NOTICE: verify_directories_created
11:14:45 T:9452  NOTICE: [launcher.py] extract_parameters
11:14:45 T:9452  NOTICE: [launcher.py] sys.argv=['plugin://plugin.video.pelisalacarta/', '36', '?action=mainlist&category=filmenoi&channel=filmenoi']
11:14:45 T:9452  NOTICE: get_params
11:14:45 T:9452  NOTICE: get_params ?action=mainlist&category=filmenoi&channel=filmenoi
11:14:45 T:9452  NOTICE: get_params command=action=mainlist
11:14:45 T:9452  NOTICE: get_params command=category=filmenoi
11:14:45 T:9452  NOTICE: get_params command=channel=filmenoi
11:14:45 T:9452  NOTICE: get_params {'action': 'mainlist', 'category': 'filmenoi', 'channel': 'filmenoi'}
11:14:45 T:9452  NOTICE: [launcher.py] params={'action': 'mainlist', 'category': 'filmenoi', 'channel': 'filmenoi'}
11:14:45 T:9452  NOTICE: [launcher.py] fanart=, channel_name=filmenoi, title=, fulltitle=, url=, thumbnail=, plot=, action=mainlist, server=, extra=, subtitle=, category=filmenoi, show=, password=
11:14:45 T:9452  NOTICE: [scrapertools.py] init
11:14:45 T:9452  NOTICE: [scrapertools.py] CACHE_PATH=
11:14:45 T:9452  NOTICE: thumbnail_type=2
11:14:45 T:9452  NOTICE: [updater.py] get_platform=xbmceden
11:14:45 T:9452  NOTICE: [updater.py] get_system_platform=windows
11:14:45 T:9452  NOTICE: [updater.py] updatechannel('filmenoi')
11:14:45 T:9452  NOTICE: [updater.py] remote_channel_url=http://xbmc-tvalacarta.googlecode.com/svn/trunk/pelisalacarta/pelisalacarta/channels/filmenoi.py
11:14:45 T:9452  NOTICE: [updater.py] remote_version_url=http://xbmc-tvalacarta.googlecode.com/svn/trunk/pelisalacarta/pelisalacarta/channels/filmenoi.xml
11:14:45 T:9452  NOTICE: [updater.py] local_channel_path=C:\Users\bogdan\AppData\Roaming\XBMC\addons\plugin.video.pelisalacarta\pelisalacarta\channels\filmenoi.py
11:14:45 T:9452  NOTICE: [updater.py] local_version_path=C:\Users\bogdan\AppData\Roaming\XBMC\addons\plugin.video.pelisalacarta\pelisalacarta\channels\filmenoi.xml
11:14:45 T:9452  NOTICE: [updater.py] local_compiled_path=C:\Users\bogdan\AppData\Roaming\XBMC\addons\plugin.video.pelisalacarta\pelisalacarta\channels\filmenoi.pyo
11:14:45 T:9452  NOTICE: [scrapertools.py] cachePage url=http://xbmc-tvalacarta.googlecode.com/svn/trunk/pelisalacarta/pelisalacarta/channels/filmenoi.xml
11:14:45 T:9452  NOTICE: [scrapertools.py] MODO_CACHE=2 (no cachear)
11:14:45 T:9452  NOTICE: [scrapertools.py] downloadpage
11:14:45 T:9452  NOTICE: [scrapertools.py] url=http://xbmc-tvalacarta.googlecode.com/svn/trunk/pelisalacarta/pelisalacarta/channels/filmenoi.xml
11:14:45 T:9452  NOTICE: [scrapertools.py] post=None
11:14:45 T:9452  NOTICE: [scrapertools.py] ficherocookies=C:\Users\bogdan\AppData\Roaming\XBMC\userdata\addon_data\plugin.video.pelisalacarta\cookies.dat
11:14:45 T:9452  NOTICE: [scrapertools.py] Importando cookielib
11:14:45 T:9452  NOTICE: [scrapertools.py] cookielib disponible
11:14:45 T:9452  NOTICE: [scrapertools.py] cambio en politicas
11:14:45 T:9452  NOTICE: [scrapertools.py] Hay cookies
11:14:45 T:9452  NOTICE: [scrapertools.py] Leyendo fichero cookies
11:14:45 T:9452  NOTICE: [scrapertools.py] opener usando urllib2 (cookielib)
11:14:45 T:9452  NOTICE: [scrapertools.py] petición GET
11:14:45 T:9452  NOTICE: [scrapertools.py] ---------------------------
11:14:45 T:9452  NOTICE: [scrapertools.py] header User-Agent=Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; es-ES; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12
11:14:45 T:9452  NOTICE: [scrapertools.py] ---------------------------
11:14:45 T:9452  NOTICE: [scrapertools.py] Peticion sin timeout
11:14:45 T:9452  NOTICE: Traceback (most recent call last):
                                              File "C:\Users\bogdan\AppData\Roaming\XBMC\addons\plugin.video.pelisalacarta\core\scrapertools.py", line 436, in downloadpage
                                                handle=urlopen(req)
                                              File "C:\Program Files\XBMC\system\python\Lib\urllib2.py", line 126, in urlopen
                                                return _opener.open(url, data, timeout)
                                              File "C:\Program Files\XBMC\system\python\Lib\urllib2.py", line 397, in open
                                                response = meth(req, response)
                                              File "C:\Program Files\XBMC\system\python\Lib\urllib2.py", line 510, in http_response
                                                'http', request, response, code, msg, hdrs)
                                              File "C:\Program Files\XBMC\system\python\Lib\urllib2.py", line 435, in error
                                                return self._call_chain(*args)
                                              File "C:\Program Files\XBMC\system\python\Lib\urllib2.py", line 369, in _call_chain
                                                result = func(*args)
                                              File "C:\Program Files\XBMC\system\python\Lib\urllib2.py", line 518, in http_error_default
                                                raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
                                            HTTPError: HTTP Error 404: Not Found
11:14:45 T:9452  NOTICE: [updater.py] remote_data=<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
                                            <html><head>
                                            <title>404 Not Found</title>
                                            </head><body>
                                            <h1>Not Found</h1>
                                            <p>The requested URL /svn/trunk/pelisalacarta/pelisalacarta/channels/filmenoi.xml was not found on this server.</p>
                                            </body></html>
11:14:45 T:9452  NOTICE: [updater.py] remote_version=0
11:14:45 T:9452  NOTICE: [updater.py] local_data=<?xml version="1.0" encoding="UTF-8" standalone="true"?>
                                            
                                            -<version>
                                            
                                            <name>filmenoi</name>
                                            
                                            <tag>2</tag>
                                            
                                            <date>23/12/2013</date>
                                            
                                            <changes>Primera version</changes>
                                            
                                            </version>
11:14:45 T:9452  NOTICE: [updater.py] local_version=2
11:14:45 T:9452  NOTICE: [launcher.py] regular_channel_path=C:\Users\bogdan\AppData\Roaming\XBMC\addons\plugin.video.pelisalacarta\pelisalacarta\channels\filmenoi.py
11:14:45 T:9452  NOTICE: [launcher.py] core_channel_path=C:\Users\bogdan\AppData\Roaming\XBMC\addons\plugin.video.pelisalacarta\core\filmenoi.py
11:14:45 T:9452  NOTICE: [launcher.py] running channel pelisalacarta.channels.filmenoi C:\Users\bogdan\AppData\Roaming\XBMC\addons\plugin.video.pelisalacarta\pelisalacarta\channels\filmenoi.pyo
11:14:45 T:9452  NOTICE: [launcher.py] multiplatform channel
11:14:45 T:9452  NOTICE: [launcher.py] executing channel 'mainlist' method
11:14:45 T:9452  NOTICE: [filmenoi.py] mainlist
11:14:45 T:9452  NOTICE: [filmenoi.py] novedades
11:14:45 T:9452  NOTICE: [scrapertools.py] cachePage url=http://cinemaxx.rs/newvideos.html
11:14:45 T:9452  NOTICE: [scrapertools.py] MODO_CACHE=2 (no cachear)
11:14:45 T:9452  NOTICE: [scrapertools.py] downloadpage
11:14:45 T:9452  NOTICE: [scrapertools.py] url=http://cinemaxx.rs/newvideos.html
11:14:45 T:9452  NOTICE: [scrapertools.py] post=None
11:14:45 T:9452  NOTICE: [scrapertools.py] ficherocookies=C:\Users\bogdan\AppData\Roaming\XBMC\userdata\addon_data\plugin.video.pelisalacarta\cookies.dat
11:14:45 T:9452  NOTICE: [scrapertools.py] Importando cookielib
11:14:45 T:9452  NOTICE: [scrapertools.py] cookielib disponible
11:14:45 T:9452  NOTICE: [scrapertools.py] cambio en politicas
11:14:45 T:9452  NOTICE: [scrapertools.py] Hay cookies
11:14:45 T:9452  NOTICE: [scrapertools.py] Leyendo fichero cookies
11:14:45 T:9452  NOTICE: [scrapertools.py] opener usando urllib2 (cookielib)
11:14:45 T:9452  NOTICE: [scrapertools.py] petición GET
11:14:45 T:9452  NOTICE: [scrapertools.py] ---------------------------
11:14:45 T:9452  NOTICE: [scrapertools.py] header User-Agent=Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; es-ES; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12
11:14:45 T:9452  NOTICE: [scrapertools.py] ---------------------------
11:14:45 T:9452  NOTICE: [scrapertools.py] Peticion sin timeout
11:14:45 T:9452  NOTICE: [scrapertools.py] ...hecha
11:14:45 T:9452  NOTICE: [scrapertools.py] Grabando cookies...
11:14:45 T:9452  NOTICE: [scrapertools.py] ...hecho
11:14:45 T:9452  NOTICE: [scrapertools.py] normal
11:14:46 T:9452  NOTICE: [scrapertools.py] Respuesta
11:14:46 T:9452  NOTICE: [scrapertools.py] ---------------------------
11:14:46 T:9452  NOTICE: [scrapertools.py] x-powered-by=PHP/5.3.22
11:14:46 T:9452  NOTICE: [scrapertools.py] transfer-encoding=chunked
11:14:46 T:9452  NOTICE: [scrapertools.py] expires=Thu, 19 Nov 1981 08:52:00 GMT
11:14:46 T:9452  NOTICE: [scrapertools.py] server=cloudflare-nginx
11:14:46 T:9452  NOTICE: [scrapertools.py] connection=close
11:14:46 T:9452  NOTICE: [scrapertools.py] pragma=no-cache
11:14:46 T:9452  NOTICE: [scrapertools.py] cache-control=no-store, no-cache, must-revalidate, post-check=0, pre-check=0
11:14:46 T:9452  NOTICE: [scrapertools.py] date=Wed, 25 Dec 2013 10:14:46 GMT
11:14:46 T:9452  NOTICE: [scrapertools.py] cf-ray=e24c42c7f0f08de
11:14:46 T:9452  NOTICE: [scrapertools.py] content-type=text/html; charset=utf-8
11:14:46 T:9452  NOTICE: [scrapertools.py] ---------------------------
11:14:46 T:9452  NOTICE: [scrapertools.py] Descargado en 1 segundos
11:14:46 T:9452  NOTICE: [scrapertools.py] 0 ('http://cinemaxx.rs/we-are-what-we-are-2013-video_5e3de56fa.html', 'http://cinemaxx.rs/uploads/thumbs/5e3de56fa-1.jpg', 'We Are What We Are (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 1 ('http://cinemaxx.rs/thor-the-dark-world-2013-video_f1bac9739.html', 'http://cinemaxx.rs/uploads/thumbs/f1bac9739-1.jpg', 'Thor: The Dark World (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 2 ('http://cinemaxx.rs/the-hunger-games-catching-fire-2013-video_d39175f7b.html', 'http://cinemaxx.rs/uploads/thumbs/d39175f7b-1.jpg', 'The Hunger Games: Catching Fire (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 3 ('http://cinemaxx.rs/solo-i-2013-video_a9a322620.html', 'http://cinemaxx.rs/uploads/thumbs/a9a322620-1.jpg', 'Solo (I) (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 4 ('http://cinemaxx.rs/saving-santa-2013-video_dc12e550f.html', 'http://cinemaxx.rs/uploads/thumbs/dc12e550f-1.jpg', 'Saving Santa (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 5 ('http://cinemaxx.rs/open-grave-2013-video_e9d9f5159.html', 'http://cinemaxx.rs/uploads/thumbs/e9d9f5159-1.jpg', 'Open Grave (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 6 ('http://cinemaxx.rs/how-i-live-now-2013-video_aecbcc058.html', 'http://cinemaxx.rs/uploads/thumbs/aecbcc058-1.jpg', 'How I Live Now (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 7 ('http://cinemaxx.rs/gravity-2013-video_cbe9b5cb4.html', 'http://cinemaxx.rs/uploads/thumbs/cbe9b5cb4-1.jpg', 'Gravity (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 8 ('http://cinemaxx.rs/frozen-2013-video_27b87f249.html', 'http://cinemaxx.rs/uploads/thumbs/27b87f249-1.jpg', 'Frozen (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 9 ('http://cinemaxx.rs/free-birds-2013-video_e36da1473.html', 'http://cinemaxx.rs/uploads/thumbs/e36da1473-1.jpg', 'Free Birds (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 10 ('http://cinemaxx.rs/escape-plan-2013-video_8cf22d077.html', 'http://cinemaxx.rs/uploads/thumbs/8cf22d077-1.jpg', 'Escape Plan (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 11 ('http://cinemaxx.rs/enders-game-2013-video_d552f0a19.html', 'http://cinemaxx.rs/uploads/thumbs/d552f0a19-1.jpg', "Ender's Game (2013)")
11:14:46 T:9452  NOTICE: [scrapertools.py] 12 ('http://cinemaxx.rs/captain-phillips-2013-video_d24693e09.html', 'http://cinemaxx.rs/uploads/thumbs/d24693e09-1.jpg', 'Captain Phillips (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 13 ('http://cinemaxx.rs/abandoned-mine-2013-video_4ab4fd2b5.html', 'http://cinemaxx.rs/uploads/thumbs/4ab4fd2b5-1.jpg', 'Abandoned Mine (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 14 ('http://cinemaxx.rs/the-way-way-back-2013-video_cb9887990.html', 'http://cinemaxx.rs/uploads/thumbs/cb9887990-1.jpg', 'The Way, Way Back (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 15 ('http://cinemaxx.rs/the-to-do-list-2013-video_6506039b8.html', 'http://cinemaxx.rs/uploads/thumbs/6506039b8-1.jpg', 'The To Do List (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 16 ('http://cinemaxx.rs/the-taking-2013-video_7b442bfd1.html', 'http://cinemaxx.rs/uploads/thumbs/7b442bfd1-1.jpg', 'The Taking (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 17 ('http://cinemaxx.rs/the-necessary-death-of-charlie-countryman-2013-video_04003fd7a.html', 'http://cinemaxx.rs/uploads/thumbs/04003fd7a-1.jpg', 'The Necessary Death of Charlie Countryman (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 18 ('http://cinemaxx.rs/the-mortal-instruments-city-of-bones-2013-video_40e6a39ce.html', 'http://cinemaxx.rs/uploads/thumbs/40e6a39ce-1.jpg', 'The Mortal Instruments: City of Bones (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 19 ('http://cinemaxx.rs/the-hot-flashes-2013-video_f30d8e99e.html', 'http://cinemaxx.rs/uploads/thumbs/f30d8e99e-1.jpg', 'The Hot Flashes (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 20 ('http://cinemaxx.rs/the-haunting-of-helena-2012-video_1159ffc8f.html', 'http://cinemaxx.rs/uploads/thumbs/1159ffc8f-1.jpg', 'The Haunting of Helena (2012)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 21 ('http://cinemaxx.rs/the-deadly-game-2013-video_7182c873f.html', 'http://cinemaxx.rs/uploads/thumbs/7182c873f-1.jpg', 'The Deadly Game (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 22 ('http://cinemaxx.rs/the-hunger-games-catching-fire-2013-video_d9f7b10bb.html', 'http://cinemaxx.rs/uploads/thumbs/d9f7b10bb-1.jpg', 'The Hunger Games: Catching Fire (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 23 ('http://cinemaxx.rs/prince-avalanche-2013-video_26d674f0f.html', 'http://cinemaxx.rs/uploads/thumbs/26d674f0f-1.jpg', 'Prince Avalanche (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 24 ('http://cinemaxx.rs/nightscape-2012-video_29bbff38a.html', 'http://cinemaxx.rs/uploads/thumbs/29bbff38a-1.jpg', 'Nightscape (2012)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 25 ('http://cinemaxx.rs/killing-heat-2012-video_42fe2f0c5.html', 'http://cinemaxx.rs/uploads/thumbs/42fe2f0c5-1.jpg', 'Killing Heat (2012)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 26 ('http://cinemaxx.rs/i-hope-they-serve-beer-in-hell-2009-video_1f22ae6fd.html', 'http://cinemaxx.rs/uploads/thumbs/1f22ae6fd-1.jpg', 'I Hope They Serve Beer in Hell (2009)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 27 ('http://cinemaxx.rs/excuse-me-for-living-2012-video_4628686b8.html', 'http://cinemaxx.rs/uploads/thumbs/4628686b8-1.jpg', 'Excuse Me for Living (2012)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 28 ('http://cinemaxx.rs/complicity-2012-video_1c3b61b3f.html', 'http://cinemaxx.rs/uploads/thumbs/1c3b61b3f-1.jpg', 'Complicity (2012)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 29 ('http://cinemaxx.rs/breakup-at-a-wedding-2013-video_35c94adc3.html', 'http://cinemaxx.rs/uploads/thumbs/35c94adc3-1.jpg', 'Breakup at a Wedding (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 30 ('http://cinemaxx.rs/best-man-down-2012-video_78918ad68.html', 'http://cinemaxx.rs/uploads/thumbs/78918ad68-1.jpg', 'Best Man Down (2012)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 31 ('http://cinemaxx.rs/battle-of-the-year-the-dream-team-2013-video_9b3505fae.html', 'http://cinemaxx.rs/uploads/thumbs/9b3505fae-1.jpg', 'Battle of the Year: The Dream Team (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 32 ('http://cinemaxx.rs/atonement-2007-video_3541ce1e3.html', 'http://cinemaxx.rs/uploads/thumbs/3541ce1e3-1.jpg', 'Atonement (2007)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 33 ('http://cinemaxx.rs/all-is-bright-2013-video_9ab3a91de.html', 'http://cinemaxx.rs/uploads/thumbs/9ab3a91de-1.jpg', 'All Is Bright (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 34 ('http://cinemaxx.rs/traitor-2008-video_0b32c9b6f.html', 'http://cinemaxx.rs/uploads/thumbs/0b32c9b6f-1.jpg', 'Traitor (2008)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 35 ('http://cinemaxx.rs/this-is-our-time-2013-video_37c653e6e.html', 'http://cinemaxx.rs/uploads/thumbs/37c653e6e-1.jpg', 'This Is Our Time (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 36 ('http://cinemaxx.rs/the-onion-movie-2008-video_d42ba57f8.html', 'http://cinemaxx.rs/uploads/thumbs/d42ba57f8-1.jpg', 'The Onion Movie (2008)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 37 ('http://cinemaxx.rs/the-motel-life-2012-video_0269496ea.html', 'http://cinemaxx.rs/uploads/thumbs/0269496ea-1.jpg', 'The Motel Life (2012)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 38 ('http://cinemaxx.rs/the-black-dahlia-haunting-2012-video_3eb0e59aa.html', 'http://cinemaxx.rs/uploads/thumbs/3eb0e59aa-1.jpg', 'The Black Dahlia Haunting (2012)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 39 ('http://cinemaxx.rs/standing-up-2013-video_3aa355c64.html', 'http://cinemaxx.rs/uploads/thumbs/3aa355c64-1.jpg', 'Standing Up (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 40 ('http://cinemaxx.rs/she-made-them-do-it-tv-2013-video_89d4aa78d.html', 'http://cinemaxx.rs/uploads/thumbs/89d4aa78d-1.jpg', 'She Made Them Do It - TV (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 41 ('http://cinemaxx.rs/shadowlands-1993-video_cab3721ad.html', 'http://cinemaxx.rs/uploads/thumbs/cab3721ad-1.jpg', 'Shadowlands (1993)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 42 ('http://cinemaxx.rs/prisoners-2013-video_757fe5e93.html', 'http://cinemaxx.rs/uploads/thumbs/757fe5e93-1.jpg', 'Prisoners (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 43 ('http://cinemaxx.rs/percy-jackson-sea-of-monsters-2013-video_e071e0526.html', 'http://cinemaxx.rs/uploads/thumbs/e071e0526-1.jpg', 'Percy Jackson: Sea of Monsters (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 44 ('http://cinemaxx.rs/nothing-left-to-fear-2013-video_fa9a3f076.html', 'http://cinemaxx.rs/uploads/thumbs/fa9a3f076-1.jpg', 'Nothing Left to Fear (2013)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 45 ('http://cinemaxx.rs/my-life-in-ruins-2009-video_bc9d60412.html', 'http://cinemaxx.rs/uploads/thumbs/bc9d60412-1.jpg', 'My Life in Ruins (2009)')
11:14:46 T:9452  NOTICE: [scrapertools.py] 46 ('http://cinemaxx.rs/mr-morgans-last-love-2013-video_33d46f4bf.html', 'http://cinemaxx.rs/uploads/thumbs/33d46f4bf-1.jpg', "Mr. Morgan's Last Love (2013)")
11:14:46 T:9452  NOTICE: [scrapertools.py] 47 ('http://cinemaxx.rs/just-married-2003-video_348e535f7.html', 'http://cinemaxx.rs/uploads/thumbs/348e535f7-1.jpg', 'Just Married (2003)')
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/we-are-what-we-are-2013-video_5e3de56fa.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/5e3de56fa-1.jpg], title=[We Are What We Are (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/thor-the-dark-world-2013-video_f1bac9739.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/f1bac9739-1.jpg], title=[Thor: The Dark World (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/the-hunger-games-catching-fire-2013-video_d39175f7b.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/d39175f7b-1.jpg], title=[The Hunger Games: Catching Fire (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/solo-i-2013-video_a9a322620.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/a9a322620-1.jpg], title=[Solo (I) (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/saving-santa-2013-video_dc12e550f.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/dc12e550f-1.jpg], title=[Saving Santa (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/open-grave-2013-video_e9d9f5159.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/e9d9f5159-1.jpg], title=[Open Grave (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/how-i-live-now-2013-video_aecbcc058.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/aecbcc058-1.jpg], title=[How I Live Now (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/gravity-2013-video_cbe9b5cb4.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/cbe9b5cb4-1.jpg], title=[Gravity (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/frozen-2013-video_27b87f249.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/27b87f249-1.jpg], title=[Frozen (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/free-birds-2013-video_e36da1473.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/e36da1473-1.jpg], title=[Free Birds (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/escape-plan-2013-video_8cf22d077.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/8cf22d077-1.jpg], title=[Escape Plan (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/enders-game-2013-video_d552f0a19.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/d552f0a19-1.jpg], title=[Ender's Game (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/captain-phillips-2013-video_d24693e09.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/d24693e09-1.jpg], title=[Captain Phillips (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/abandoned-mine-2013-video_4ab4fd2b5.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/4ab4fd2b5-1.jpg], title=[Abandoned Mine (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/the-way-way-back-2013-video_cb9887990.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/cb9887990-1.jpg], title=[The Way, Way Back (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/the-to-do-list-2013-video_6506039b8.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/6506039b8-1.jpg], title=[The To Do List (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/the-taking-2013-video_7b442bfd1.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/7b442bfd1-1.jpg], title=[The Taking (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/the-necessary-death-of-charlie-countryman-2013-video_04003fd7a.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/04003fd7a-1.jpg], title=[The Necessary Death of Charlie Countryman (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/the-mortal-instruments-city-of-bones-2013-video_40e6a39ce.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/40e6a39ce-1.jpg], title=[The Mortal Instruments: City of Bones (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/the-hot-flashes-2013-video_f30d8e99e.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/f30d8e99e-1.jpg], title=[The Hot Flashes (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/the-haunting-of-helena-2012-video_1159ffc8f.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/1159ffc8f-1.jpg], title=[The Haunting of Helena (2012)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/the-deadly-game-2013-video_7182c873f.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/7182c873f-1.jpg], title=[The Deadly Game (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/the-hunger-games-catching-fire-2013-video_d9f7b10bb.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/d9f7b10bb-1.jpg], title=[The Hunger Games: Catching Fire (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/prince-avalanche-2013-video_26d674f0f.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/26d674f0f-1.jpg], title=[Prince Avalanche (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/nightscape-2012-video_29bbff38a.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/29bbff38a-1.jpg], title=[Nightscape (2012)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/killing-heat-2012-video_42fe2f0c5.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/42fe2f0c5-1.jpg], title=[Killing Heat (2012)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/i-hope-they-serve-beer-in-hell-2009-video_1f22ae6fd.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/1f22ae6fd-1.jpg], title=[I Hope They Serve Beer in Hell (2009)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/excuse-me-for-living-2012-video_4628686b8.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/4628686b8-1.jpg], title=[Excuse Me for Living (2012)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/complicity-2012-video_1c3b61b3f.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/1c3b61b3f-1.jpg], title=[Complicity (2012)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/breakup-at-a-wedding-2013-video_35c94adc3.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/35c94adc3-1.jpg], title=[Breakup at a Wedding (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/best-man-down-2012-video_78918ad68.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/78918ad68-1.jpg], title=[Best Man Down (2012)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/battle-of-the-year-the-dream-team-2013-video_9b3505fae.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/9b3505fae-1.jpg], title=[Battle of the Year: The Dream Team (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/atonement-2007-video_3541ce1e3.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/3541ce1e3-1.jpg], title=[Atonement (2007)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/all-is-bright-2013-video_9ab3a91de.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/9ab3a91de-1.jpg], title=[All Is Bright (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/traitor-2008-video_0b32c9b6f.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/0b32c9b6f-1.jpg], title=[Traitor (2008)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/this-is-our-time-2013-video_37c653e6e.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/37c653e6e-1.jpg], title=[This Is Our Time (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/the-onion-movie-2008-video_d42ba57f8.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/d42ba57f8-1.jpg], title=[The Onion Movie (2008)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/the-motel-life-2012-video_0269496ea.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/0269496ea-1.jpg], title=[The Motel Life (2012)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/the-black-dahlia-haunting-2012-video_3eb0e59aa.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/3eb0e59aa-1.jpg], title=[The Black Dahlia Haunting (2012)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/standing-up-2013-video_3aa355c64.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/3aa355c64-1.jpg], title=[Standing Up (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/she-made-them-do-it-tv-2013-video_89d4aa78d.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/89d4aa78d-1.jpg], title=[She Made Them Do It - TV (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/shadowlands-1993-video_cab3721ad.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/cab3721ad-1.jpg], title=[Shadowlands (1993)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/prisoners-2013-video_757fe5e93.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/757fe5e93-1.jpg], title=[Prisoners (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/percy-jackson-sea-of-monsters-2013-video_e071e0526.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/e071e0526-1.jpg], title=[Percy Jackson: Sea of Monsters (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/nothing-left-to-fear-2013-video_fa9a3f076.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/fa9a3f076-1.jpg], title=[Nothing Left to Fear (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/my-life-in-ruins-2009-video_bc9d60412.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/bc9d60412-1.jpg], title=[My Life in Ruins (2009)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/mr-morgans-last-love-2013-video_33d46f4bf.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/33d46f4bf-1.jpg], title=[Mr. Morgan's Last Love (2013)]
11:14:46 T:9452  NOTICE: url=[http://cinemaxx.rs/just-married-2003-video_348e535f7.html], thumbnail=[http://cinemaxx.rs/uploads/thumbs/348e535f7-1.jpg], title=[Just Married (2003)]
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "We Are What We Are (2013)" , "http://cinemaxx.rs/we-are-what-we-are-2013-video_5e3de56fa.html" , "http://cinemaxx.rs/uploads/thumbs/5e3de56fa-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Thor: The Dark World (2013)" , "http://cinemaxx.rs/thor-the-dark-world-2013-video_f1bac9739.html" , "http://cinemaxx.rs/uploads/thumbs/f1bac9739-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Hunger Games: Catching Fire (2013)" , "http://cinemaxx.rs/the-hunger-games-catching-fire-2013-video_d39175f7b.html" , "http://cinemaxx.rs/uploads/thumbs/d39175f7b-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Solo (I) (2013)" , "http://cinemaxx.rs/solo-i-2013-video_a9a322620.html" , "http://cinemaxx.rs/uploads/thumbs/a9a322620-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Saving Santa (2013)" , "http://cinemaxx.rs/saving-santa-2013-video_dc12e550f.html" , "http://cinemaxx.rs/uploads/thumbs/dc12e550f-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Open Grave (2013)" , "http://cinemaxx.rs/open-grave-2013-video_e9d9f5159.html" , "http://cinemaxx.rs/uploads/thumbs/e9d9f5159-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "How I Live Now (2013)" , "http://cinemaxx.rs/how-i-live-now-2013-video_aecbcc058.html" , "http://cinemaxx.rs/uploads/thumbs/aecbcc058-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Gravity (2013)" , "http://cinemaxx.rs/gravity-2013-video_cbe9b5cb4.html" , "http://cinemaxx.rs/uploads/thumbs/cbe9b5cb4-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Frozen (2013)" , "http://cinemaxx.rs/frozen-2013-video_27b87f249.html" , "http://cinemaxx.rs/uploads/thumbs/27b87f249-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Free Birds (2013)" , "http://cinemaxx.rs/free-birds-2013-video_e36da1473.html" , "http://cinemaxx.rs/uploads/thumbs/e36da1473-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Escape Plan (2013)" , "http://cinemaxx.rs/escape-plan-2013-video_8cf22d077.html" , "http://cinemaxx.rs/uploads/thumbs/8cf22d077-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Ender's Game (2013)" , "http://cinemaxx.rs/enders-game-2013-video_d552f0a19.html" , "http://cinemaxx.rs/uploads/thumbs/d552f0a19-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Captain Phillips (2013)" , "http://cinemaxx.rs/captain-phillips-2013-video_d24693e09.html" , "http://cinemaxx.rs/uploads/thumbs/d24693e09-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Abandoned Mine (2013)" , "http://cinemaxx.rs/abandoned-mine-2013-video_4ab4fd2b5.html" , "http://cinemaxx.rs/uploads/thumbs/4ab4fd2b5-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Way, Way Back (2013)" , "http://cinemaxx.rs/the-way-way-back-2013-video_cb9887990.html" , "http://cinemaxx.rs/uploads/thumbs/cb9887990-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The To Do List (2013)" , "http://cinemaxx.rs/the-to-do-list-2013-video_6506039b8.html" , "http://cinemaxx.rs/uploads/thumbs/6506039b8-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Taking (2013)" , "http://cinemaxx.rs/the-taking-2013-video_7b442bfd1.html" , "http://cinemaxx.rs/uploads/thumbs/7b442bfd1-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Necessary Death of Charlie Countryman (2013)" , "http://cinemaxx.rs/the-necessary-death-of-charlie-countryman-2013-video_04003fd7a.html" , "http://cinemaxx.rs/uploads/thumbs/04003fd7a-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Mortal Instruments: City of Bones (2013)" , "http://cinemaxx.rs/the-mortal-instruments-city-of-bones-2013-video_40e6a39ce.html" , "http://cinemaxx.rs/uploads/thumbs/40e6a39ce-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Hot Flashes (2013)" , "http://cinemaxx.rs/the-hot-flashes-2013-video_f30d8e99e.html" , "http://cinemaxx.rs/uploads/thumbs/f30d8e99e-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Haunting of Helena (2012)" , "http://cinemaxx.rs/the-haunting-of-helena-2012-video_1159ffc8f.html" , "http://cinemaxx.rs/uploads/thumbs/1159ffc8f-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Deadly Game (2013)" , "http://cinemaxx.rs/the-deadly-game-2013-video_7182c873f.html" , "http://cinemaxx.rs/uploads/thumbs/7182c873f-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Hunger Games: Catching Fire (2013)" , "http://cinemaxx.rs/the-hunger-games-catching-fire-2013-video_d9f7b10bb.html" , "http://cinemaxx.rs/uploads/thumbs/d9f7b10bb-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Prince Avalanche (2013)" , "http://cinemaxx.rs/prince-avalanche-2013-video_26d674f0f.html" , "http://cinemaxx.rs/uploads/thumbs/26d674f0f-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Nightscape (2012)" , "http://cinemaxx.rs/nightscape-2012-video_29bbff38a.html" , "http://cinemaxx.rs/uploads/thumbs/29bbff38a-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Killing Heat (2012)" , "http://cinemaxx.rs/killing-heat-2012-video_42fe2f0c5.html" , "http://cinemaxx.rs/uploads/thumbs/42fe2f0c5-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "I Hope They Serve Beer in Hell (2009)" , "http://cinemaxx.rs/i-hope-they-serve-beer-in-hell-2009-video_1f22ae6fd.html" , "http://cinemaxx.rs/uploads/thumbs/1f22ae6fd-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Excuse Me for Living (2012)" , "http://cinemaxx.rs/excuse-me-for-living-2012-video_4628686b8.html" , "http://cinemaxx.rs/uploads/thumbs/4628686b8-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Complicity (2012)" , "http://cinemaxx.rs/complicity-2012-video_1c3b61b3f.html" , "http://cinemaxx.rs/uploads/thumbs/1c3b61b3f-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Breakup at a Wedding (2013)" , "http://cinemaxx.rs/breakup-at-a-wedding-2013-video_35c94adc3.html" , "http://cinemaxx.rs/uploads/thumbs/35c94adc3-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Best Man Down (2012)" , "http://cinemaxx.rs/best-man-down-2012-video_78918ad68.html" , "http://cinemaxx.rs/uploads/thumbs/78918ad68-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Battle of the Year: The Dream Team (2013)" , "http://cinemaxx.rs/battle-of-the-year-the-dream-team-2013-video_9b3505fae.html" , "http://cinemaxx.rs/uploads/thumbs/9b3505fae-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Atonement (2007)" , "http://cinemaxx.rs/atonement-2007-video_3541ce1e3.html" , "http://cinemaxx.rs/uploads/thumbs/3541ce1e3-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "All Is Bright (2013)" , "http://cinemaxx.rs/all-is-bright-2013-video_9ab3a91de.html" , "http://cinemaxx.rs/uploads/thumbs/9ab3a91de-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Traitor (2008)" , "http://cinemaxx.rs/traitor-2008-video_0b32c9b6f.html" , "http://cinemaxx.rs/uploads/thumbs/0b32c9b6f-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "This Is Our Time (2013)" , "http://cinemaxx.rs/this-is-our-time-2013-video_37c653e6e.html" , "http://cinemaxx.rs/uploads/thumbs/37c653e6e-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Onion Movie (2008)" , "http://cinemaxx.rs/the-onion-movie-2008-video_d42ba57f8.html" , "http://cinemaxx.rs/uploads/thumbs/d42ba57f8-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Motel Life (2012)" , "http://cinemaxx.rs/the-motel-life-2012-video_0269496ea.html" , "http://cinemaxx.rs/uploads/thumbs/0269496ea-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "The Black Dahlia Haunting (2012)" , "http://cinemaxx.rs/the-black-dahlia-haunting-2012-video_3eb0e59aa.html" , "http://cinemaxx.rs/uploads/thumbs/3eb0e59aa-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Standing Up (2013)" , "http://cinemaxx.rs/standing-up-2013-video_3aa355c64.html" , "http://cinemaxx.rs/uploads/thumbs/3aa355c64-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "She Made Them Do It - TV (2013)" , "http://cinemaxx.rs/she-made-them-do-it-tv-2013-video_89d4aa78d.html" , "http://cinemaxx.rs/uploads/thumbs/89d4aa78d-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Shadowlands (1993)" , "http://cinemaxx.rs/shadowlands-1993-video_cab3721ad.html" , "http://cinemaxx.rs/uploads/thumbs/cab3721ad-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Prisoners (2013)" , "http://cinemaxx.rs/prisoners-2013-video_757fe5e93.html" , "http://cinemaxx.rs/uploads/thumbs/757fe5e93-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Percy Jackson: Sea of Monsters (2013)" , "http://cinemaxx.rs/percy-jackson-sea-of-monsters-2013-video_e071e0526.html" , "http://cinemaxx.rs/uploads/thumbs/e071e0526-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Nothing Left to Fear (2013)" , "http://cinemaxx.rs/nothing-left-to-fear-2013-video_fa9a3f076.html" , "http://cinemaxx.rs/uploads/thumbs/fa9a3f076-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "My Life in Ruins (2009)" , "http://cinemaxx.rs/my-life-in-ruins-2009-video_bc9d60412.html" , "http://cinemaxx.rs/uploads/thumbs/bc9d60412-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Mr. Morgan's Last Love (2013)" , "http://cinemaxx.rs/mr-morgans-last-love-2013-video_33d46f4bf.html" , "http://cinemaxx.rs/uploads/thumbs/33d46f4bf-1.jpg" , "")" , "")"
11:14:46 T:9452  NOTICE: [xbmctools.py] addnewfolderextra( "","filmenoi" , "findvideos" , "filmenoi" , "Just Married (2003)" , "http://cinemaxx.rs/just-married-2003-video_348e535f7.html" , "http://cinemaxx.rs/uploads/thumbs/348e535f7-1.jpg" , "")" , "")"
11:14:46 T:2136  NOTICE: Thread Background Loader start, auto delete: false
Gracias.


PS Ya lo se que no es un sitio con peliculas españolas, pero es con peliculas en VO que es lo que yo busco. :D

Re: Anadir nuevo sito web

Publicado: 26 Dic 2013, 10:03
por jesus
Vamos por partes.

El error es normal, se produce un error 404 porque pelisalacarta intenta buscar el fichero XML que tiene el indicador de versión de ese canal, y como no existe da ese error. El usuario no lo va a ver, ni va a interrumpir la ejecución, y puedes solucionarlo si cuando subas el canal al SVN le añades un fichero XML con la versión "1".

La paginación tienes que extraerla del bloque del final, concretamente del botón que hay a la derecha del todo del paginador:

Código: Seleccionar todo

<li class="">
<a href="newvideos.html?&page=2">&raquo;</a>
</li>
Puedes usar este patron:

Código: Seleccionar todo

patron='<li[^<]+<a href="([^"]+)">\&raquo\;</a>'
Y luego componer la URL de esta forma:

scrapedurl = urlparse.urljoin(item.url,match)

En cuanto a las opciones de vídeos en este caso no es tan fácil, tienes que buscar el bloque donde están los enlaces a las fuentes:

Código: Seleccionar todo

<div class="clearfix"></div>
<br> <hr><img src="http://cinemaxx.rs/templates/s0.png" alt="Smiley face" height="40" width="150"/>
&nbsp;<a href="#index_panel_detailed" onClick='$("#Playerholder").load("http://cinemaxx.rs/ajax.php?p=custom&do=requestmirror&vid=d24693e09&mirror=1"); void(0);'><img src="http://cinemaxx.rs/templates/s1.png" alt="Smiley face" height="40" width="110"/></a>
&nbsp;<a href="#index_panel_detailed" onClick='$("#Playerholder").load("http://cinemaxx.rs/ajax.php?p=custom&do=requestmirror&vid=d24693e09&mirror=2"); void(0);'><img src="http://cinemaxx.rs/templates/s2.png" alt="Smiley face" height="40" width="110"/></a>
<hr><br>
Y usar estas URL para buscar el enlace:

Código: Seleccionar todo

http://cinemaxx.rs/ajax.php?p=custom&do=requestmirror&vid=d24693e09&mirror=1

Código: Seleccionar todo

http://cinemaxx.rs/ajax.php?p=custom&do=requestmirror&vid=d24693e09&mirror=2
Lo mejor es presentar cada una de estas entradas al usuario con la etiqueta "Opción 1", "Opción 2", etc. como se hace por ejemplo en Unsoloclic. Fíjate que cuando pulsas en una peli en unsoloclic no se llama a findvideos, sino que se busca la lista de servidores tal y como la muestra el sitio para luego usar "findvideos" en cada una de ellas.

La llamada a "findvideos" te funcionará si la usas con servidores conocidos, pero hay fuentes de este sitio que usan enlaces que no se van a poder reconocer directamente.

Si pegas el fichero del canal (puedes subirlo directamente si lo comprimes con ZIP) lo puedo probar y te digo algo más, pero creo que ya lo tienes bastante avanzado.

Re: Anadir nuevo sito web

Publicado: 26 Dic 2013, 13:33
por bogdanioanliviu
Gracias por responder.
Te cuento. Me he dado cuenta que en el sitio
cinemaxx.rs
estan utilizando enlaces de google docs y estos enlaces o peliculas no van en el plugin.
Lo he provado aniadiendo a mano el enlace de un video y me decia que no encuentra nada para reproducir.
De momento voy a dejar esto parado aver si siguen con la locura de google docs. Lo que esta en vk me funciona estupendamente.

Siguente e aprovechado y me e puesto con el sitio que me interesaba mas
filme-net.com
. Asi que he conseguido que me cree la lista de las peliculas de la primera pagina.

Ahora los fallos que tengo con este sitio son:

- no intiendo por que no me esta creando el "Pagina siguente"
- a la hora de sacar el link de los videos tien peliculas que el en lace que me interesa "<iframe ...." esta en el mismo

Código: Seleccionar todo

<p>
que el primer enlace, si estan asi me funciona bine
Si estan de la siguente forma :

Código: Seleccionar todo

<p>servidor 1 <p>
<p>servidor 2 <p>
me esta encontrando cosas raras de youtube
- eso no es tan importante pero tampoco me funciona : a la hora de sacar la imagen de la pelicula no funciona por que el enlace tiene espacios y a la hora de interpretarlo luego cuando encuantra el espacio corta el link.

Te adjunto el fichero como lo tengo hasta ahora.

Si lo porias mirar y decirme donde estoy fallando con lo de Pagina siguente y como podria sacar el link cuando no esta en el mismo "p" te lo agradezco.

Ps si lo queres utilizar para futuras actualizaciones sin problema. Yo voy a seguir con otros sitios y si no te importa los voy a subir aqui para que lo mires

Gracias por la ayuda.

Re: Anadir nuevo sito web

Publicado: 19 Ene 2014, 11:59
por bogdanioanliviu
Hola
De nuevo necesito de vuestra sabiduria.
Estoy intentando poner en pelis a la carta el siguente sitio: xo.ro
Ya esta echo la mas grande parte. Lo unico que me falta es recojer los videos.

Para ello estoy utilizando el siguente patron :

Código: Seleccionar todo

patron = '<iframe src="([^"]+)">'
Que en teoria tendria que funcionar, pero no me añade ningun link de video.

Alguien me podria explicar como funciona esta parte ?
Estoy utilizando como template el canal de unsoloclic.

Gracias

Re: Anadir nuevo sito web

Publicado: 21 Ene 2014, 09:47
por jesus
bogdanioanliviu escribió:Gracias por responder.
Te cuento. Me he dado cuenta que en el sitio
cinemaxx.rs
estan utilizando enlaces de google docs y estos enlaces o peliculas no van en el plugin.
¿Puedes poner un ejemplo de uno de esos enlaces? Le echo un vistazo.
bogdanioanliviu escribió:Ps si lo queres utilizar para futuras actualizaciones sin problema. Yo voy a seguir con otros sitios y si no te importa los voy a subir aqui para que lo mires
Por supuesto lo añado encantado, te adjunto el canal modificado :)

El idioma del sitio es rumano ¿verdad?

He arreglado el problema con la paginación (el patrón que usabas no era el correcto, mira en el comentario que he puesto en la línea 84 para ver cómo se pone la paginación y como está hecho el patrón en la línea siguiente).

El problema con los espacios en blanco en las imágenes se resuelve sustituyéndolos por el símbolo "%20", es lo que hace el navegador cuando tu escribes una URL:

Código: Seleccionar todo

http://www.filme-net.com/wp-content/themes/Moviex versiune noua/timthumb.php?src=http://www.filme-net.com/wp-content/uploads/2014/01/Reasonable-Doubt-I-2014.jpg&h=240&w=170&zc=1&q=100
Pasa a ser:

Código: Seleccionar todo

http://www.filme-net.com/wp-content/themes/Moviex%20versiune%20noua/timthumb.php?src=http://www.filme-net.com/wp-content/uploads/2014/01/Reasonable-Doubt-I-2014.jpg&h=240&w=170&zc=1&q=100
En el canal adjunto he quitado la parte del principio y del final para dejar solamente la imagen, ya que es más grande:

Código: Seleccionar todo

http://www.filme-net.com/wp-content/uploads/2014/01/Reasonable-Doubt-I-2014.jpg
En cuanto a buscar el enlace a los vídeos, lo mejor en este caso es que dejes a la función "findvideos" de pelisalacarta hacer el trabajo. El código en el que te basaste para unsoloclic tiene que buscar en acortadores de enlaces, pero este sitio tiene los enlaces pegados directamente así que es muy sencillo.

Lo que hace "findvideos" es buscar todos los patrones de servidores conocidos en la página, de forma que si añades una de las películas de la sección de novedades y le pones como acción "findvideos" cuando alguien pulse se realiza una búsqueda completa de enlaces. Es lo primero que hay que probar.
bogdanioanliviu escribió:Estoy intentando poner en pelis a la carta el siguente sitio: xo.ro
Ya esta echo la mas grande parte. Lo unico que me falta es recojer los videos.
Pon el canal adjunto tal como lo tengas y le echo un vistazo.

Re: Anadir nuevo sito web

Publicado: 21 Ene 2014, 20:48
por bogdanioanliviu
Jesus eres grande
lo miro el jueves que tengo mas tiempo, y te adjunto el fichero de xo.ro

Si son paginas con pelis en version original y subtitulado en rumano (como yo soy rumano :D ....).

Si queresa añadir los canales en el ad-on yo encantado y voy a intentar a modificarlos cuando se cambia la pagina. Pero pienso que lo mejor seria apartarlos en otra carpeta para asi no inducir en error a otros usuarios.
Gracias y vuelvo a escribir jueves

Re: Anadir nuevo sito web

Publicado: 22 Ene 2014, 12:29
por bogdanioanliviu
Hola
Te adjunto un ejemplo de pelicula que esta en doc´s de google.

El codigo en la pagina de la pelicula es :

Código: Seleccionar todo

<object id="flashplayer" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="510" height="401"><param name="movie" value="http://cinemaxx.rs/sv1/player.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="FlashVars" value="plugins=http://cinemaxx.rs/sv1/plugins/proxy.swf&proxy.link=https://docs.google.com/file/d/0B7XS5mr4tViBSGtjNjVHNVllSlU/edit&skin=http://cinemaxx.rs/darkrv5.zip"><embed name="flashplayer" src="http://cinemaxx.rs/sv1/player.swf" flashvars="plugins=http://cinemaxx.rs/sv1/plugins/proxy.swf&proxy.link=https://docs.google.com/file/d/0B7XS5mr4tViBSGtjNjVHNVllSlU/edit&skin=http://cinemaxx.rs/darkrv5.zip" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="510" height="401"></object>
y el link de la pelicula es :

Código: Seleccionar todo

http://cinemaxx.rs/uhf-1989_bed68cc0e.html#index_panel_detailed
Parece que han abandonado de momento esa ideea con lo de google.
Un saludo

Re: Anadir nuevo sito web

Publicado: 28 Ene 2014, 17:26
por bogdanioanliviu
Hola
Adjunto los canales que tengo hasta ahora.
El cinemax_rs como han cambiado la pagina no consigo que me encuentre los videos.
Los demas van masomenos bien. El mejor que va hasta ahora es el xo.
Gracias

Re: Anadir nuevo sito web

Publicado: 02 Mar 2014, 15:23
por bogdanioanliviu
Actualizacion para el canal cinemax_rs.
Ha cambiado de dns y tambien de estructura. Lo he actualizado. Subo el fichero py para que se pueda actualizar a todos.
@Jesus Por favor verifica la nueva version del fichero que adjunto y si te parece bien actualiza el que tienes tu.
Gracias

PS : si te parece bien me gustaria que cambies el RU (que es rusia) por RO (que es Romania), siendo los canales con subtitulo en rumano.
Gracias

Re: Anadir nuevo sito web

Publicado: 02 Mar 2014, 15:32
por jesus
Acabo de subir la nueva versión, pero lo incluyo y vuelvo a subirla :)

No había caído en el detalle del idioma, ya que "Rumania" empieza por "Ru", pero tienes razón que es más correcto poner "Ro". Lo arreglo también.