Digikam/Batch Queue Manager and Script/ca: Difference between revisions
(Created page with "{{Input|1= #!/bin/bash rsync -avz --delete /home/usuari/Fotos/Processades /media/0CFA-5602/DCIM/Camera }}") |
(Created page with "{{Input|1= cd /home/usuari/Fotos/Processades llgal --exif --li -L --sx 800 --sy 600}}") |
||
Line 28: | Line 28: | ||
{{Input|1= | {{Input|1= | ||
cd /home/ | cd /home/usuari/Fotos/Processades | ||
llgal --exif --li -L --sx 800 --sy 600}} | llgal --exif --li -L --sx 800 --sy 600}} | ||
Revision as of 21:04, 25 February 2012
Processar fotos amb el Gestor de la cua de lots i un script de l'intèrpret d'ordres
Transcrit des de l'article d'en Dmitri Popov, l'11 de juliol de 2011
One of digiKam’s lesser known features is the ability to link scripts to notifications. At first sight, this may seem like a rather obscure functionality, but it can be put to some clever uses. Say, you want to keep a portfolio of selected photos on a mobile device. Resizing multiple photos to a specified size to make it easier to view them on the mobile device and transferring the processed photos from digiKam to the mobile device manually is not very practical. And this is where the ability to trigger scripts via notifications can come in handy. You can attach a simple Bash script to the Batch queue completed notification, so it’s triggered automatically when the Batch Queue Manager tool is done processing photos.
The Bash script is very simple, indeed. It uses the rsync tool to copy the processed photos from the source directory (in this case, it’s /home/user/Photos/Processed) to the /DCIM/Camera directory on the mounted SD card:
#!/bin/bash rsync -avz --delete /home/usuari/Fotos/Processades /media/0CFA-5602/DCIM/Camera
Paste the code above into an empty text file and save it as a postprocess.sh file (don’t forget to replace the example paths with the actual paths to the source and destination directories). Make then the script executable using the chmod o+x postprocess.sh
command.
In digiKam, choose and select the item. Tick the check box, and enter the path to the postprocess.sh script in the appropriate field. As you might have guessed, this links the script to the notification, so the script is triggered as soon as the batch operation is finished.
Next, create a tag (e.g.,transfer) in digiKam and assign it to the photos you want to transfer to the mobile device. Alternatively, you can use a specific color label for that. Use then the Ctrl + B (or choose ) to add them to a new batch queue. In the section, click on the tab and select the sub-album. Under the tab, double-click on the tool to add it to the section. In the pane, specify the desired length. You can choose between several presets, or enable the option and specify the desired length.
right sidebar to display the tagged or labelled photos, select them, and pressHit then the
button, and once the batch operation is completed, the assigned Bash script copies the resized photos to the mounted SD card.You can tweak the script to perform other post-processing actions, too. For example, if you use the llgal command-line tool to generate static HTML photo galleries, you can tweak the script to add the processed photos to an HTML album. The script may look something like this:
cd /home/usuari/Fotos/Processades llgal --exif --li -L --sx 800 --sy 600
In other words, you can do all kinds of clever tricks by linking scripts to notifications.