Programmation questions
Fonctions de creation d'enregistrement et de recherche...
bonjour,
Encore deux questions avec le langage de script :
- Existe t'il une fonction pour créer un enregistrement dans la base ?
- et une autre pour faire une recherche sur un élément (le titre d'un film par exemple) ?
Je suis en train de créer un script pour importer automatiquement des fichiers n'existant pas dans la base... La partie parcours d'une arborescence est OK, mais bêtement, je n'ai pas regardé si ces 2 fonctions étaient disponible... et j'ai l'impression que non :-(
Quelqu'un peu me confirmer ce point ?
Sinon, je vais me débrouiller pour faire un programme externe... Dans ce cas, est ce que le format de base d'AMC est standard ? (paradox, jet etc...)
A+ F
PS : je viens de voir ta réponse pour tsearchrec, je me suis débrouillé autrement, merci !
Encore deux questions avec le langage de script :
- Existe t'il une fonction pour créer un enregistrement dans la base ?
- et une autre pour faire une recherche sur un élément (le titre d'un film par exemple) ?
Je suis en train de créer un script pour importer automatiquement des fichiers n'existant pas dans la base... La partie parcours d'une arborescence est OK, mais bêtement, je n'ai pas regardé si ces 2 fonctions étaient disponible... et j'ai l'impression que non :-(
Quelqu'un peu me confirmer ce point ?
Sinon, je vais me débrouiller pour faire un programme externe... Dans ce cas, est ce que le format de base d'AMC est standard ? (paradox, jet etc...)
A+ F
PS : je viens de voir ta réponse pour tsearchrec, je me suis débrouillé autrement, merci !
Le script ne peut pas parcourir/modifier la liste de films, malheureusement.
Ça fait partie des trucs que je dois rajouter, mais ça implique quelques "grosses" modifs, donc ça risque de prendre du temps à arriver.
Le format de la base n'est pas "standard", mais il est simple et documenté, donc il ne doit pas être trop difficile à manipuler dans d'autres langages.
Et pour le manipuler dans un programme écrit en Delphi c'est facile : il suffit d'utiliser fields.pas et movieclass.pas fournis avec le code d'AMC.
Sinon on peut toujours basculer en XML pour la liste, ça aussi ça peut se traiter facilement...
Ça fait partie des trucs que je dois rajouter, mais ça implique quelques "grosses" modifs, donc ça risque de prendre du temps à arriver.
Le format de la base n'est pas "standard", mais il est simple et documenté, donc il ne doit pas être trop difficile à manipuler dans d'autres langages.
Et pour le manipuler dans un programme écrit en Delphi c'est facile : il suffit d'utiliser fields.pas et movieclass.pas fournis avec le code d'AMC.
Sinon on peut toujours basculer en XML pour la liste, ça aussi ça peut se traiter facilement...
-
- Posts: 744
- Joined: 2007-04-28 05:46:43
- Location: Italy
Dear Friends,
I need a programmation Help:
In some script I found a function named 'PicktreeSort' and its meaning is almost clear but I cannot find any documentation about it.
Inserted in a script it doesn't look to function as well as I need and so I would like to know how it functions.
Would you help me?
Thanks in advance.
I need a programmation Help:
In some script I found a function named 'PicktreeSort' and its meaning is almost clear but I cannot find any documentation about it.
Inserted in a script it doesn't look to function as well as I need and so I would like to know how it functions.
Would you help me?
Thanks in advance.
-
- Posts: 744
- Joined: 2007-04-28 05:46:43
- Location: Italy
Parcours d'une arborescence - function ListDirectory
Bonjour,
J'utilise la fonction ListDirectory pour parcourir une arborescence de fichier. Je sais repérer les fichier, des répertoires. Par contre, le retour de cette fonction ne me donne pas le chemin complet du fichier.
Qui a une astuce pour savoir à tout moment (ou pour reconstituer), le chemin de chacun des fichiers renvoyés par cette fonction ?
Ou alors, existe t'il un autre moyen pour parcourir une arborescence, en récupérant la liste de tous les fichiers .avi par exemple, avec leur chemin ?
Merci d'avance.
FB
PS :
J'ai pensé à utiliser :
procedure Launch(command: string; parameters: string);
Pour lancer un CD et récupérer le résultat... mais la commande ne permet pas la récupération de résultat !!! :-(
Pour lancer
J'utilise la fonction ListDirectory pour parcourir une arborescence de fichier. Je sais repérer les fichier, des répertoires. Par contre, le retour de cette fonction ne me donne pas le chemin complet du fichier.
Qui a une astuce pour savoir à tout moment (ou pour reconstituer), le chemin de chacun des fichiers renvoyés par cette fonction ?
Ou alors, existe t'il un autre moyen pour parcourir une arborescence, en récupérant la liste de tous les fichiers .avi par exemple, avec leur chemin ?
Merci d'avance.
FB
PS :
J'ai pensé à utiliser :
procedure Launch(command: string; parameters: string);
Pour lancer un CD et récupérer le résultat... mais la commande ne permet pas la récupération de résultat !!! :-(
Pour lancer
Oups, j'ai oublié de te préciser... en fait, j'ai utilisé la fonction en récursif... :antp wrote: elle ne fait que faire la liste du dossier que tu lui donnes, donc normalement tu sais quand même dans quel dossier tu es
Code: Select all
//------------------------------------------------------------------------------
// Procedure de recherche dans l'arborescence - Recursive
//------------------------------------------------------------------------------
procedure scan_fb(nom_dossier : string);
var
cpt: integer;
ListeDir: TStringList;
ListeLigne: TStringList;
Ligne_originale: string;
Ligne_parse: string;
nom_complet_fic: string;
begin
ListeDir := TStringList.Create;
ListeDir.Text := ListDirectory(nom_dossier,'*.*');
if (GetOption('Debug') = 1) then showmessage(FloattoStr(ListeDir.Count)+' lignes');
for cpt := 0 to ListeDir.count -1 do
begin
// Un répertoire est trouvé
ListeLigne := TStringList.Create;
Ligne_originale := ListeDir.GetString(cpt);
ListeLigne.text := StringReplace(Ligne_originale,tab,crlf);
if (Listeligne.GetString(3) = 'D') and ((Listeligne.GetString(0) <> '.') and (Listeligne.GetString(0) <> '..')) then
begin
rep_nouveau := Listeligne.GetString(0);
path_actuel := RechPath(rep_nouveau, path_actuel);
if (GetOption('Debug') = 1) then showmessage(Listeligne.GetString(0)+' est un répertoire');
if (GetOption('Debug') = 1) then showmessage(nom_dossier+Listeligne.GetString(0)+'\');
scan_fb(nom_dossier+Listeligne.GetString(0)+'\');
end;
if (Listeligne.GetString(3) = '') then
begin
if not(subStringExist('cd2',AnsiLowerCase(Listeligne.GetString(0)))) and not(subStringExist('cd3',AnsiLowerCase(Listeligne.GetString(0)))) and not(subStringExist('cd4',AnsiLowerCase(Listeligne.GetString(0)))) then
begin
if (GetOption('Debug') = 1) then showmessage(Listeligne.GetString(0)+' est un fichier');
if (subStringExist('.avi',AnsiLowerCase(Listeligne.GetString(0)))) then
begin
// Un film est trouvé
cpt_films := cpt_films + 1;
nom_complet_fic := ExtractFilePath(Listeligne.GetString(0));
FichTransit.Append(Listeligne.GetString(0));
scan_FichReference(Listeligne.GetString(0),Ligne_originale);
end;
end;
end;
Listeligne.free;
End;
ListeDir.Free;
End;
Code: Select all
//------------------------------------------------------------------------------
// Fonction de recherche du PATH courant
//------------------------------------------------------------------------------
function RechPath(xrep_nouveau, xpath_actuel: string) : string;
var
flag_sortie, profondeur, i: integer;
xpath_test: string;
begin
flag_sortie := 1;
profondeur := 1;
xpath_test := xpath_actuel + xrep_nouveau + '\';
while flag_sortie = 1 do
begin
if DirectoryExists(xpath_test) then
begin
xpath_actuel := xpath_test;
flag_sortie := 0;
end
else
begin
xpath_test := xpath_actuel;
for i := 1 to profondeur do
begin
xpath_test := ExcludeTrailingPathDelimiter(xpath_test);
xpath_test := ExtractFilePath(xpath_test);
end;
xpath_test := xpath_test + xrep_nouveau + '\';
profondeur := profondeur + 1;
end;
end;
result := xpath_test;
end;
Il a pour objectif, le scan complet d'une arborescence de fichier, pour créer un fichier d'import pour Ant Movie. Il gère un fichier de référence pour ne réimporter que les nouveaux fichiers. Il me reste à gérer les fichiers qui ont disparu.
Merci pour ton soft et pour ton aide !
FB
Just an idea.. in case you use XML format for your catalogs, wouldn't it be a lot more elegant to open - and modify - the catalog file from the script ? You can open it, make a backup file (just in case something goes wrong), use internal XML parser to modify the catalog and add new movies in correct format - all using scripting. No need for importing a list and the catalog file itself is always up-to-date anyway..boyerf wrote:Il a pour objectif, le scan complet d'une arborescence de fichier, pour créer un fichier d'import pour Ant Movie.
Only limitation is that catalog file must be in XML format, I guess
export images using scripts
Hello, i´m working in a script to export all the movie catalog data to xml files that i can use with my mkv player WDTV HD... i have no problem at all to export the text fields but i wanted to export the images too...
¿how can i export using a script the images in a folder and with a filename defined in the script?
For each movie the script make a folder (using translated title) and inside creates a .xml file ("info.xml") with the movie information... this is easy, but i also wanted to copy inside each folder the movie image with this name "folder.jpg" and i don´t know how to do this...
hope you can help me,
thanks
¿how can i export using a script the images in a folder and with a filename defined in the script?
For each movie the script make a folder (using translated title) and inside creates a .xml file ("info.xml") with the movie information... this is easy, but i also wanted to copy inside each folder the movie image with this name "folder.jpg" and i don´t know how to do this...
hope you can help me,
thanks
Re: export images using scripts
Impossible in current versionHades666 wrote: For each movie the script make a folder (using translated title) and inside creates a .xml file ("info.xml") with the movie information... this is easy, but i also wanted to copy inside each folder the movie image with this name "folder.jpg" and i don´t know how to do this...
Images handling is one of the things that I have to add.
Maybe using HTML export function instead of scripting would be a better alternative for you. There you can export with pictures, and it should be no problem to adapt HTML export to the XML format you need. Please do not mistake with XML export (there you cannot change the format of XML file).Hades666 wrote:¿how can i export using a script the images in a folder and with a filename defined in the script?
Just don't know if there is a way to copy single files to different folders on export, but I don't think so. So all xml files and pictures would be copied to the same folder.
finally i made a more complicated solution but it works for me...
I get what i wanted in 2 steps:
1) first i export all the pictures with "translatedtitle"
2) launch my script... the script first creates the folders, then move and rename the .jpg inside the right folder (with some help of 'cmd.exe' ) and after that generates the xml files inside each folder...
antp thanks for giving us such a good program...
bye
I get what i wanted in 2 steps:
1) first i export all the pictures with "translatedtitle"
2) launch my script... the script first creates the folders, then move and rename the .jpg inside the right folder (with some help of 'cmd.exe' ) and after that generates the xml files inside each folder...
antp thanks for giving us such a good program...
bye
GetPicture with Local image files
Hello
Is There a Way to Import a picture from local hard disk files ?
I've downloaded Covers for many movies and using Shift -F7 for
Each file is cumbersome. So i tried to write a script.
I've tried a file Url 'file:///Drive:\Path\ImageFileName.jpg'
it didn't work .
Thanks in advance
Is There a Way to Import a picture from local hard disk files ?
I've downloaded Covers for many movies and using Shift -F7 for
Each file is cumbersome. So i tried to write a script.
I've tried a file Url 'file:///Drive:\Path\ImageFileName.jpg'
it didn't work .
Thanks in advance