[EN+others] NEW SCRIPTS REQUESTS : CLICK HERE TO DO THEM
Goofs on IMDb
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...
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...
Schau Dir mal Griffith an! Zelluloid und auch OFDB ist kein Problem!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 ^^)
http://griffith.cc/index.php?option=com ... e&Itemid=1
Im- und Export von/zu AMC funktioniert prima.
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.
I make a request for a script for Turner Classic Movies Database TCMdb please.
http://www.tcm.com/tcmdb/
Thanks
http://www.tcm.com/tcmdb/
Thanks
www.cinemagora.com
Nice site to retrieve best movies as they compute the movie rating based on ratings from various sites : Allocine, Imdb, metacritic
Nice site to retrieve best movies as they compute the movie rating based on ratings from various sites : Allocine, Imdb, metacritic
-
- Posts: 7
- Joined: 2013-01-15 10:01:06
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?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
-
- Posts: 62
- Joined: 2009-11-12 05:53:14
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.
(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.
I do not think it is possible to delete them, but they can at least be listed:
viewtopic.php?t=5537
viewtopic.php?t=5537
[REQ] [ES] www.ecartelera.com
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
Thanks
* I tried to do it myself... but the search on the page is weird
-
- Posts: 863
- Joined: 2006-08-31 23:58:18
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
ex in a short program :
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')
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,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 meex in a short program :Code: Select all
PostPage('http://www.ecartelera.com/buscar/', 'campo='+URLEncode(UTF8Encode(MovieName))+'&B1=Buscar')
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.
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?
-
- Posts: 863
- Joined: 2006-08-31 23:58:18