Page 9 of 10
Goofs on IMDb
Posted: 2011-05-14 19:54:14
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...
Posted: 2011-06-07 11:34:07
by Fer69
Hello
I've been looking for a script that works with this page:
http://www.elitefreak.net/
Thanks
Posted: 2011-06-19 23:00:09
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.
Posted: 2011-08-29 06:23:12
by bhaineo
Hi... Can anyone make a script for
www.jinni.com? Its a really good site...
Thanks...
Posted: 2011-11-23 01:17:35
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.
Posted: 2012-03-11 07:24:09
by lsstan
I make a request for a script for Turner Classic Movies Database
TCMdb please.
http://www.tcm.com/tcmdb/
Thanks
www.cinemarx.ro
Posted: 2012-03-26 18:56:18
by Patrixus
Hello!
Would be possible to add
www.cinemarx.ro please?
Thank you!
http://www.imdb.pt/
Posted: 2012-05-15 17:43:04
by mariolcsilva
www.rottentomatoes.com
Posted: 2012-05-16 13:02:18
by mariolcsilva
Posted: 2012-12-19 14:04:00
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
Posted: 2013-09-03 13:40:09
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?
Posted: 2014-01-18 00:05:52
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.
Posted: 2014-02-02 11:28:10
by theunreal
Can you make video URL from youtube?
Posted: 2014-10-09 07:39:00
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?
Posted: 2014-10-09 14:32:47
by antp
I do not think it is possible to delete them, but they can at least be listed:
viewtopic.php?t=5537
Posted: 2014-10-09 15:00:57
by davidep85
Very good, thank you very much!
[REQ] [ES] www.ecartelera.com
Posted: 2015-03-27 12:46:06
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
Posted: 2015-03-29 12:42:10
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.
Posted: 2015-04-07 09:37:23
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!
any suggestion?
Posted: 2015-04-07 11:14:53
by Raoul_Volfoni
Hi,
Works for me with 'pequeño' ...
Are you using
the last stable version of AMC ?