termux-packages/packages/termux-api/termux-camera-photo

32 lines
752 B
Plaintext
Raw Normal View History

#!/bin/sh
2015-06-13 01:03:31 +02:00
set -e -u
show_usage () {
echo "usage: termux-camera-photo [OPTIONS] <output-file>"
2015-06-13 01:03:31 +02:00
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."
2015-06-13 01:03:31 +02:00
}
2015-07-29 03:55:54 +02:00
PARAMS=""
2015-06-13 01:03:31 +02:00
O=`getopt -l camera: -l help -l size -- c:hs: "$@"`
eval set -- "$O"
while true; do
case "$1" in
2015-07-29 04:17:38 +02:00
-c|--camera) PARAMS="$PARAMS --es camera $2"; shift 2;;
2015-06-13 01:03:31 +02:00
-h|--help) show_usage; exit 0;;
2015-07-29 03:55:54 +02:00
-s|--size) PARAMS="$PARAMS --ei size_index $2"; shift 2;;
2015-06-13 01:03:31 +02:00
--) shift; break;;
*) echo Error; exit 1;;
esac
done
2015-07-29 04:17:38 +02:00
if [ $# != 1 ]; then show_usage; exit 1; fi
2015-06-13 01:03:31 +02:00
touch $1
2015-07-29 03:55:54 +02:00
PARAMS="$PARAMS --es file `realpath $1`"
2015-06-13 01:03:31 +02:00
@TERMUX_API@ CameraPhoto $PARAMS