Will this be implemented both for stills and for videos? Will there requirements that the resolution used has to be exactly the sensor resolution divided by some integers, 2, 3, 4, ...?jamesh wrote:To be done in real time it would need to be a code change on the gpu, which limits the changepeople who have access to the code. Its on my list of stuff to do.
I'll be adding another mode for video that uses binining to give a full FOV rather than the crop we currently have.lingon wrote:Will this be implemented both for stills and for videos? Will there requirements that the resolution used has to be exactly the sensor resolution divided by some integers, 2, 3, 4, ...?jamesh wrote:To be done in real time it would need to be a code change on the gpu, which limits the changepeople who have access to the code. Its on my list of stuff to do.
Code: Select all
#!/bin/bash
# Timelapse capture
echo "Timelapse Capture Script"
HOST='*.*.*.*'
USER='*'
PASSWD=''
FILE='image.jpg'
NUMBER=0
COUNTER=0
while [ $NUMBER = "0" ]; do
raspistill -t 2000 -ex auto -w 1920 -h 1080 -o image.jpg
sleep 2
ftp -n $HOST <<END_SCRIPT
quote USER $USER
quote PASS $PASSWD
cd /Photo
binary
put $FILE
quit
END_SCRIPT
echo "Uploaded"
sleep 18
done