Page 23 of 26

Posted: 2013-09-01 15:03:58
by soulsnake
Salut,

Voici une nouvelle correction pour le script CinEmotions pour récupérer l'image suite à un nouveau changement du site.

http://mickaelvanneufville.online.fr/AM ... ons_FR.ifs

Soulsnake.

Posted: 2013-09-01 17:06:40
by antp
merci ;)

Posted: 2013-11-16 22:47:45
by Ln2
Bonjour
Allocine ramene les secrets de tournage en double. (pas les premiers, mais à partir du 7eme)
ex: Despicable Me 2.

D'avance merci.

Posted: 2013-11-17 03:17:26
by Raoul_Volfoni
Ln2 wrote:... Allocine ramene les secrets de tournage en double. (pas les premiers, mais à partir du 7eme)
ex: Despicable Me 2. ...
Salut,
Merci d'avoir signalé le bug.
C'est corrigé, une mise à jour va arriver sous peu et elle sera annoncée ici.

Posted: 2013-11-28 17:41:24
by bpeddicord
DvdEmpire is not displaying the names when you do a search.

Posted: 2013-11-30 14:58:50
by deadeye
bpeddicord wrote:DvdEmpire is not displaying the names when you do a search.
I will be working on it in the next few days, thanks!

Posted: 2013-12-14 09:48:12
by elman
Hi,

is any of you guys updating IMDb script for new fields (Writer, Composer, Certification, etc.)?

Also trivia import needs some work as it also imports voting.

Elman

Posted: 2013-12-14 10:39:58
by antp
And it seems that there is also a problem with large images: viewtopic.php?p=37547#37547
I hoped to have time this week for that, but I didn't.
I'll try to check these one of these days if no-one else fixes the script.

Posted: 2014-01-18 16:04:52
by avberk
I noticed the moviemeter (NL).ifs script doesn't work properly anymore.
It doesn't import the picture and 'beoordeling' is not imported.
Also it imports 'TRAILER' in the 'beschrijving' field.

Can this be fixed?

Posted: 2014-01-18 17:47:08
by Raoul_Volfoni
avberk wrote:I noticed the moviemeter (NL).ifs script doesn't work properly anymore.
It doesn't import the picture and 'beoordeling' is not imported.
Also it imports 'TRAILER' in the 'beschrijving' field.

Can this be fixed?
Hi,

I'm going to have a look.
What is 'beoordeling' ... the rating ?
Next Announcement in the dedicated topic.

Posted: 2014-01-18 17:54:11
by avberk
beoordeling=rating

Posted: 2014-01-18 17:59:43
by Raoul_Volfoni
avberk wrote:beoordeling=rating
Ok ... i'm working on it.

http://www.adultdvdempire.com 1.5.0 needs fixing

Posted: 2014-04-09 15:11:51
by taiguer
Fist performer name is not being included in the list

Posted: 2014-04-09 20:31:26
by rosbert
FilmTv.it: the script doesn't work anymore after website update

Posted: 2014-07-16 03:54:44
by al0203
Since today when I try to import the information from Filmaffinity, the script doesn't import the special characters of spanish like the ñ.

Script dvdfr.com

Posted: 2014-10-24 08:26:36
by sts85
Bonjour,

Depuis quelques jours le script dvdfr.com fonctionne mal.

il transcrit:
- Français au lieu de Français
- Émilie au lieu d’Émilie
- Comédie au lieu de Comédie

Il a vraiment du mal avec les accents , les cédilles....

J'ai la dernière version du script 1.62 du 30/08/2014.

Merci d'avance :grinking:

Jean Christophe

Posted: 2014-10-24 13:19:55
by antp
Bonjour,
En effet, il semblerait qu'ils soient passé à de l'UTF8 pour l'encodage.
J'ai rajouté des appel à UTF8Decode un peu partout dans le script, globalement ça semble fonctionner, mais il faudrait bien tester ça pour en être sûr. Surtout pour tout ce qui touche aux commentaires, comme ça dépend pas mal des options c'est pas facile d'être sûr que tout marche.
Pour la suite, j'ai créé un nouveau sujet (il ne semblait pas y en avoir un récent au sujet de DVDFR), ça sera plus pratique de continuer là s'il y a d'autres problèmes à signaler pour ce script :
viewtopic.php?p=38965

IMDB

Posted: 2014-11-16 15:01:59
by pah
Hi,

please be informed that the IMDB-Script (Okt-2014) doesn't work anymore.

Error: unknown identifier: FIELDCOMPOSER in row 295

Code: Select all

  // Composer
  if CanSetField(fieldComposer) then
  begin    
    Value := TextBetween(PageText, 'Music by</a></h5>', '</table>');
    FullValue := '';
    Value2 := TextBetween(Value, '<a href="/name/', '</a>');
    while Value2 <> '' do
    begin
      Value := RemainingText;
      Value2 := TextAfter(Value2, '">');
      if FullValue <> '' then
        FullValue := FullValue + ', ';
      FullValue := FullValue + Value2;
      Value2 := TextBetween(Value, '<a href="/name/', '</a>');
    end;
    HTMLDecode(FullValue);
    SetField(fieldComposer, FullValue);
  end;
Please have a look!

Regards,
pah

Posted: 2014-11-16 20:01:52
by Raoul_Volfoni
Hi,

The iMDB script (3.84) work ... but only with AMC 4.2.0
The composer field is a new field added in AMC 4.2.0.

@ antp
Can you edit the script and change the checkversion for 4.2.0 at line 1013 (in AMC editor) to avoid confusion.

Posted: 2014-11-16 20:54:24
by antp
Raoul_Volfoni wrote: @ antp
Can you edit the script and change the checkversion for 4.2.0 at line 1013 (in AMC editor) to avoid confusion.
Indeed that would be safer