[EN+others] NEW SCRIPTS REQUESTS : CLICK HERE TO DO THEM

If you made a script you can offer it to the others here, or ask help to improve it. You can also report here bugs & problems with existing scripts.
adler
Posts: 11
Joined: 2008-12-27 20:47:51

Goofs on IMDb

Post by adler »

I was curious...

I am not fluent in script writing, but I was wondering if it is possible to alter the IMDb script so that it downloads goofs instead of trivia from the site.

AND...if it is possible, how would you do it?

Thanks...
Fer69
Posts: 3
Joined: 2011-06-07 11:28:06

Post by Fer69 »

Hello

I've been looking for a script that works with this page: http://www.elitefreak.net/

Thanks
Alfred
Posts: 2
Joined: 2011-04-29 10:58:36

Post by Alfred »

corncutter wrote:German Site:

zelluloid.de would be great.

Their synopsis is often very good
(and not full of spelling and grammar mistakes as the OFDB ^^)
Schau Dir mal Griffith an! Zelluloid und auch OFDB ist kein Problem!
http://griffith.cc/index.php?option=com ... e&Itemid=1

Im- und Export von/zu AMC funktioniert prima.
bhaineo
Posts: 6
Joined: 2011-08-29 06:19:37

Post by bhaineo »

Hi... Can anyone make a script for www.jinni.com? Its a really good site...

Thanks...
pmuus
Posts: 2
Joined: 2011-11-23 01:11:40

Post by pmuus »

I'm surprised there is no script for The Movie Database (TMDb or www.themoviedb.org). It is a free and open movie database. I like the descriptions, the cover art and the ratings.
lsstan
Posts: 10
Joined: 2009-03-23 09:36:55

Post by lsstan »

I make a request for a script for Turner Classic Movies Database TCMdb please.

http://www.tcm.com/tcmdb/

Thanks
Patrixus
Posts: 10
Joined: 2012-03-26 17:54:32

www.cinemarx.ro

Post by Patrixus »

Hello!
Would be possible to add www.cinemarx.ro please?
Thank you!
mariolcsilva
Posts: 2
Joined: 2012-05-15 17:40:09

http://www.imdb.pt/

Post by mariolcsilva »

mariolcsilva
Posts: 2
Joined: 2012-05-15 17:40:09

www.rottentomatoes.com

Post by mariolcsilva »

Laminar
Posts: 11
Joined: 2012-12-19 12:30:19

Post by Laminar »

www.cinemagora.com

Nice site to retrieve best movies as they compute the movie rating based on ratings from various sites : Allocine, Imdb, metacritic
Rubberduck
Posts: 7
Joined: 2013-01-15 10:01:06

Post by Rubberduck »

angel wrote:Hello,

I have discovered your great Proggi.

Now would like to integrate Amazon.de as a Script, unfortunately, everybody do not function which I find here. Do I make there what wrong?

Can somebody give me please a functioning Script for Amazon.de?

I pack this then simply into the Script folder or?

Many thanks already

Greetings from Germany
He's right there. I can't find a working amazon.de script myself. Can someone please help? Or maybe another script that helps me importing german blu-ray data?
the_observer
Posts: 62
Joined: 2009-11-12 05:53:14

Post by the_observer »

REQUEST for imdb script
(i cannot find a thread specifically for imdb script so i write here.If there is please inform me and feel free to move this post to the appropriate place)

Would it be possible to download to a field imdb trailers link too?
UPDATE: At the moment there is a seperate trailer script which works great and it is here

Thank you for your time reading this.

Regards,
the_observer.
theunreal
Posts: 2
Joined: 2014-02-02 11:24:36
Contact:

Post by theunreal »

Can you make video URL from youtube?
davidep85
Posts: 2
Joined: 2014-10-09 07:34:16

Post by davidep85 »

Is that possible to compare movie in catalog and movie in folder and delete movie in catalog that are not anymore in folder?
antp
Site Admin
Posts: 9629
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post by antp »

I do not think it is possible to delete them, but they can at least be listed:
viewtopic.php?t=5537
davidep85
Posts: 2
Joined: 2014-10-09 07:34:16

Post by davidep85 »

Very good, thank you very much!
carlosmg2
Posts: 39
Joined: 2009-08-18 19:21:08
Contact:

[REQ] [ES] www.ecartelera.com

Post by carlosmg2 »

now that cartelespeliculas has died I would like someone to a script for www.ecartelera.com because it has huge database and HQ posters.

Thanks

* I tried to do it myself... but the search on the page is weird
Raoul_Volfoni
Posts: 863
Joined: 2006-08-31 23:58:18

Post by Raoul_Volfoni »

Hi carlosmg2

Can't do the script have no time :(
But I can help you with the search on the page.

this line seems to work for me

Code: Select all

PostPage('http://www.ecartelera.com/buscar/', 'campo='+URLEncode(UTF8Encode(MovieName))+'&B1=Buscar')
ex in a short program :

Code: Select all

program PostPage_ecartelera;
uses
  StringUtils1;

Var
PageText, MovieName, MovieList : string;

begin
  if Input('Test','Enter movie name : ',MovieName) then
  begin
    PageText := PostPage('http://www.ecartelera.com/buscar/', 'campo='+URLEncode(UTF8Encode(MovieName))+'&B1=Buscar');
    If Pos('<div id="listapeliculas">', PageText) > 0 then
      begin
        //Showmessage('Win !! :)');
        //Showmemo(PageText);
        MovieList := UTF8Decode(TextBetween(PageText, '<div id="listapeliculas">', '<div style="height:8px; font-size:8px;"> </div>'));
        HTMLRemoveTags(MovieList);
        Showmessage(MovieList);
      end else
      Showmessage('Loose :(');
  end;
end.
carlosmg2
Posts: 39
Joined: 2009-08-18 19:21:08
Contact:

Post by carlosmg2 »

Raoul_Volfoni wrote:Hi carlosmg2

Can't do the script have no time :(
But I can help you with the search on the page.

this line seems to work for me

Code: Select all

PostPage('http://www.ecartelera.com/buscar/', 'campo='+URLEncode(UTF8Encode(MovieName))+'&B1=Buscar')
ex in a short program :

Code: Select all

program PostPage_ecartelera;
uses
  StringUtils1;

Var
PageText, MovieName, MovieList : string;

begin
  if Input('Test','Enter movie name : ',MovieName) then
  begin
    PageText := PostPage('http://www.ecartelera.com/buscar/', 'campo='+URLEncode(UTF8Encode(MovieName))+'&B1=Buscar');
    If Pos('<div id="listapeliculas">', PageText) > 0 then
      begin
        //Showmessage('Win !! :)');
        //Showmemo(PageText);
        MovieList := UTF8Decode(TextBetween(PageText, '<div id="listapeliculas">', '<div style="height:8px; font-size:8px;"> </div>'));
        HTMLRemoveTags(MovieList);
        Showmessage(MovieList);
      end else
      Showmessage('Loose :(');
  end;
end.
Hi Raoul_Volfoni,

Thanks for your tip. I managed to get it working but I have a problem with the encoding thing.

If I search 'pequeño' it doesn't work.

UTF8Encode('pequeño) -> pequeño
UrlEncode ('pequeño) -> peque%F1o
URLEncode(UTF8Encode('pequeño) -> peque%C3%B1o


what a mess! :hum: :cry:

any suggestion?
Raoul_Volfoni
Posts: 863
Joined: 2006-08-31 23:58:18

Post by Raoul_Volfoni »

Hi,

Works for me with 'pequeño' ... :??:

Image

Are you using the last stable version of AMC ?
Post Reply