up find min max command info

This commit is contained in:
Tykayn 2023-12-10 17:58:57 +01:00 committed by tykayn
parent 5999b2fb94
commit 94fe14a2ae
1 changed files with 7 additions and 1 deletions

View File

@ -51,4 +51,10 @@ function findMinMaxNumberOfPhotos(dirPath: string): { min: number, max: number }
}
let result = findMinMaxNumberOfPhotos(folder + subfolder)
console.log('result :\n', `bash /home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/exif_batch.sh ${result.min} ${result.max} INBOX_a_assembler/${subfolder}`)
console.log('result', result)
console.log("script :\n", `
ts-node /home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/main.ts --goproSubFolder=INBOX_a_assembler/${subfolder}
bash /home/poule/encrypted/stockage-syncable/photos/imageries/gopro/INBOX_PTO_hugin/hugin_executor_from_${result.min}_to_${result.max}.sh
bash /home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/exif_batch.sh ${result.min} ${result.max} INBOX_a_assembler/${subfolder}
`)