You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
712 B

10 years ago
#!/system/bin/sh
set -e -u
show_usage () {
echo "usage: termux-camera-photo [OPTIONS] <output-file>"
10 years ago
echo ""
echo "Take a photo and save it in a file. Valid options:"
echo " -c, --camera <camera-id> the ID of the camera to use"
echo "Use termux-camera-info for information about available camera IDs."
10 years ago
}
PARAMS=""
10 years ago
O=`getopt -l camera: -l help -l size -- c:hs: "$@"`
eval set -- "$O"
while true; do
case "$1" in
-c|--camera) PARAMS="$PARAMS --ei camera $2"; shift 2;;
10 years ago
-h|--help) show_usage; exit 0;;
-s|--size) PARAMS="$PARAMS --ei size_index $2"; shift 2;;
10 years ago
--) shift; break;;
*) echo Error; exit 1;;
esac
done
touch $1
PARAMS="$PARAMS --es file `realpath $1`"
10 years ago
termux-api CameraPhoto $PARAMS