Bonjour,
je souhaiterais créer des time-lapses avec un Nikon D3000 et Octolapse. Seulement, pour y arriver j’ai suivi un tutoriel (Configuring an External Camera · FormerLurker/Octolapse Wiki · GitHub) mais le code qui doit déclencher l’appareil photo ne fonctionne pas. Le voici :
#!/bin/sh
# Put the arguments sent by Octolapse into variables for easy use
SNAPSHOT_NUMBER=$1
DELAY_SECONDS=$2
DATA_DIRECTORY=$3
SNAPSHOT_DIRECTORY=$4
SNAPSHOT_FILENAME=$5
SNAPSHOT_FULL_PATH=$6
# Check to see if the snapshot directory exists
if [ ! -d "${SNAPSHOT_DIRECTORY}" ];
then
echo "Creating directory: ${SNAPSHOT_DIRECTORY}"
mkdir -p "${SNAPSHOT_DIRECTORY}"
fi
# IMPORTANT - You must add gphoto2 to your /etc/sudoers file in order to execute gphoto2 without sudo
# otherwise the following line will fail.
sudo gphoto2 --capture-image-and-download --filename "${SNAPSHOT_FULL_PATH}"
if [ ! -f "${SNAPSHOT_FULL_PATH}" ];
then
echo "The snapshot was not found in the expected directory: '${SNAPSHOT_FULL_PATH}'." >&2
exit 1
fi
De plus, si j’ai bien compris, le code enregistre les photos sur la Raspberry mais je voudrais que les photos restent sur le Nikon. Ce serais possible ?
J’ai pourtant pris soin de respecter toutes les étapes du tuto.
Merci pour votre aide !