Gracias, una no entiendo inglés, ni otros idiomas, y la segunda creo que descargué la versión correcta.
4.2.1 y de otro lugar decía 4.2.1.1 y me instalaba la misma versión o sea 4.2.1 siempre beta
Gracias amigo, es la misma que tengo yo, pero no importa ni las carátulas, ni writer, ni composer.Choi2116 wrote:Yo instalé esta:
http://mickaelvanneufville.online.fr/AM ... [BETA].exe
Una vez instalada resultó ser la 4.2.1.1
Saludos
Choi, tenemos misma versión de script y de softawre tú y yo. Pero te desafío a que pruebes con otras películas ya catalogadas, u otras por ejemplo Collide, que antes salía (en de la columna de "campo" debajo de "Productor" -que sí se importa-) "Writer" y debajo "Composer" NO LOS IMPORTA.Choi2116 wrote:Comfirmo que NO importa la Carátula. Pero Compositor y Escritor SÍ lo hace
Saludos
Actualicé programa y script a la versión que ambos tienen instalada y luego he probado con la película que tu dices y (Collide) y ha importado tanto tanto "writer" como "composer". El problema sigue estando con las carátulas...masterchipo wrote:Choi, tenemos misma versión de script y de softawre tú y yo. Pero te desafío a que pruebes con otras películas ya catalogadas, u otras por ejemplo Collide, que antes salía (en de la columna de "campo" debajo de "Productor" -que sí se importa-) "Writer" y debajo "Composer" NO LOS IMPORTA.Choi2116 wrote:Comfirmo que NO importa la Carátula. Pero Compositor y Escritor SÍ lo hace
Saludos
Ya probé con películas ya catalogadas y al destildarse, quedan importados porque ya están guardados, o probá borrando los campos o ver que sale destildado al buscar la info del script.
Gracias y saludos
Code: Select all
LineNr := FindLine('http://pics.filmaffinity.com/', Page, LineNr);
Code: Select all
LineNr := FindLine('https://pics.filmaffinity.com/', Page, LineNr);
Code: Select all
LineNr := FindLine('http://pics.filmaffinity.com/', Page, LineNr);
Code: Select all
LineNr := FindLine('https://pics.filmaffinity.com/', Page, LineNr);
Probé cambiando esa línea, pero a la hora de importar la carátula, da el siguiente mensaje de error: "Error connecting with SSL" .... Saludos!JuanRa_007 wrote:Parece que es fácil. Luego lo miro con detalle, pero creo que solo habría que cambiar esta línea:porCode: Select all
LineNr := FindLine('http://pics.filmaffinity.com/', Page, LineNr);
Code: Select all
LineNr := FindLine('https://pics.filmaffinity.com/', Page, LineNr);
It seems to be easy. Then I look at it in detail, but I think it would only have to change this line:porCode: Select all
LineNr := FindLine('http://pics.filmaffinity.com/', Page, LineNr);
Code: Select all
LineNr := FindLine('https://pics.filmaffinity.com/', Page, LineNr);
He probado con "Collide" como dices:masterchipo wrote:Choi, tenemos misma versión de script y de softawre tú y yo. Pero te desafío a que pruebes con otras películas ya catalogadas, u otras por ejemplo Collide, que antes salía (en de la columna de "campo" debajo de "Productor" -que sí se importa-) "Writer" y debajo "Composer" NO LOS IMPORTA.Choi2116 wrote:Comfirmo que NO importa la Carátula. Pero Compositor y Escritor SÍ lo hace
Saludos
Ya probé con películas ya catalogadas y al destildarse, quedan importados porque ya están guardados, o probá borrando los campos o ver que sale destildado al buscar la info del script.
Gracias y saludos
Code: Select all
LineNr := FindLine('"http://pics.filmaffinity.com/', Page, LineNr);
Code: Select all
LineNr := FindLine('href="https://pics.filmaffinity.com/', Page, LineNr);
Code: Select all
GetPicture(Item);
Code: Select all
Item := StringReplace(Item,'https://','http://');
GetPicture(Item);
Code: Select all
// Picture
LineNr := FindLine('href="https://pics.filmaffinity.com/', Page, LineNr);
if LineNr <> -1 then
begin
Line := Page.GetString(LineNr);
Item := TextBetween(Line, '<a class="lightbox" href="', '" title="');
if Length(Item) = 0 then
Item := TextBetween(Line, '" src="', '"></a>');
Item := StringReplace(Item,'https://','http://');
GetPicture(Item);
end;
Muy esforzado lo tuyo Juan, pero no entiendo como hacerlo y qué es lo que tengo que editar en el script, supongo que los administradores modificaran el script ¿no?JuanRa_007 wrote:He tenido que modificar el apartado de búsqueda de las carátulas en dos partes:
//
I have had to modify the section of search of the covers in two parts:
1.- El string de búsqueda para la caratula cambia. Quedaría así:
//
he search string for the tag changes. It would look like this:a//toCode: Select all
LineNr := FindLine('"http://pics.filmaffinity.com/', Page, LineNr);
Han incluido en el código html "meta-datos" y uno de ellos es la caratula y por eso fallaba el "scripts".Code: Select all
LineNr := FindLine('href="https://pics.filmaffinity.com/', Page, LineNr);
//
They have included in the html code "meta-data" and one of them is the title and that is why the "scripts" failed.
2.- El comando que se usa para traer la caratula (GetPicture(Item);) devuelve un error si la dirección web contenida en "item" empieza por "https:", por lo que hago un cambio antes de descargarme la caratula. Así quedaría:
//
The GetPicture (Item);) command returns an error if the web address contained in "item" starts with "https:", so I make a change before downloading the title. This would be:por//byCode: Select all
GetPicture(Item);
Code: Select all
Item := StringReplace(Item,'https://','http://'); GetPicture(Item);
El código de la parte de la caratula quedaría así:
//
The code of the part of the title would look like this:Saludos.Code: Select all
// Picture LineNr := FindLine('href="https://pics.filmaffinity.com/', Page, LineNr); if LineNr <> -1 then begin Line := Page.GetString(LineNr); Item := TextBetween(Line, '<a class="lightbox" href="', '" title="'); if Length(Item) = 0 then Item := TextBetween(Line, '" src="', '"></a>'); Item := StringReplace(Item,'https://','http://'); GetPicture(Item); end;
Muy bueno!!! Ahora sí, carátulas incluidas!!!JuanRa_007 wrote:He tenido que modificar el apartado de búsqueda de las carátulas en dos partes:
//
I have had to modify the section of search of the covers in two parts:
1.- El string de búsqueda para la caratula cambia. Quedaría así:
//
he search string for the tag changes. It would look like this:a//toCode: Select all
LineNr := FindLine('"http://pics.filmaffinity.com/', Page, LineNr);
Han incluido en el código html "meta-datos" y uno de ellos es la caratula y por eso fallaba el "scripts".Code: Select all
LineNr := FindLine('href="https://pics.filmaffinity.com/', Page, LineNr);
//
They have included in the html code "meta-data" and one of them is the title and that is why the "scripts" failed.
2.- El comando que se usa para traer la caratula (GetPicture(Item);) devuelve un error si la dirección web contenida en "item" empieza por "https:", por lo que hago un cambio antes de descargarme la caratula. Así quedaría:
//
The GetPicture (Item);) command returns an error if the web address contained in "item" starts with "https:", so I make a change before downloading the title. This would be:por//byCode: Select all
GetPicture(Item);
Code: Select all
Item := StringReplace(Item,'https://','http://'); GetPicture(Item);
El código de la parte de la caratula quedaría así:
//
The code of the part of the title would look like this:Saludos.Code: Select all
// Picture LineNr := FindLine('href="https://pics.filmaffinity.com/', Page, LineNr); if LineNr <> -1 then begin Line := Page.GetString(LineNr); Item := TextBetween(Line, '<a class="lightbox" href="', '" title="'); if Length(Item) = 0 then Item := TextBetween(Line, '" src="', '"></a>'); Item := StringReplace(Item,'https://','http://'); GetPicture(Item); end;
Thanks, I updated the script on the serverJuanRa_007 wrote:He tenido que modificar el apartado de búsqueda de las carátulas en dos partes:
//
I have had to modify the section of search of the covers in two parts:
PinkFloyd wrote:¿Sabeís algún link para la versión 4.2.1.1 beta en español o inglés?
Amigo, está más arriba, en una pregunta que hice yo, ahí un compañero puso el enlace.Choi2116 wrote:Yo instalé esta:
http://mickaelvanneufville.online.fr/AM ... [BETA].exe
Una vez instalada resultó ser la 4.2.1.1
Saludos