Compare commits
3 Commits
7768df55a6
...
6eb456e667
Author | SHA1 | Date | |
---|---|---|---|
6eb456e667 | |||
191784d1f2 | |||
e132462e5c |
12
sync-camera
12
sync-camera
@ -11,6 +11,13 @@ function print_usage() {
|
|||||||
echo "USAGE: ${0##*/} -d <device> -o <dir> [-t <dir>] [-r]"
|
echo "USAGE: ${0##*/} -d <device> -o <dir> [-t <dir>] [-r]"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if [ $# -eq 0 ]
|
||||||
|
then
|
||||||
|
>&2 echo "No arguments specified!"
|
||||||
|
print_usage
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
while getopts "d:o:t:rh" opt
|
while getopts "d:o:t:rh" opt
|
||||||
do
|
do
|
||||||
case "$opt" in
|
case "$opt" in
|
||||||
@ -64,8 +71,9 @@ do
|
|||||||
OUTPUT_PATH="$OUTPUT_DIR/${INPUT_FILE##*/}"
|
OUTPUT_PATH="$OUTPUT_DIR/${INPUT_FILE##*/}"
|
||||||
if ! [ -f "$OUTPUT_PATH" ]
|
if ! [ -f "$OUTPUT_PATH" ]
|
||||||
then
|
then
|
||||||
echo "Copying ${INPUT_FILE} to ${OUTPUT_PATH} ..."
|
echo "Copying ${INPUT_FILE} to ${OUTPUT_PATH::-4}.jpg ..."
|
||||||
cp "$INPUT_FILE" "${OUTPUT_PATH::-4}.jpg"
|
cp "$INPUT_FILE" "${OUTPUT_PATH::-4}.jpg"
|
||||||
|
chmod -x "${OUTPUT_PATH::-4}.jpg"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $REMOVE_FILES -eq 1 ]
|
if [ $REMOVE_FILES -eq 1 ]
|
||||||
@ -80,7 +88,7 @@ do
|
|||||||
OUTPUT_PATH="$OUTPUT_DIR/${INPUT_FILE##*/}"
|
OUTPUT_PATH="$OUTPUT_DIR/${INPUT_FILE##*/}"
|
||||||
if ! [ -f "$OUTPUT_PATH" ]
|
if ! [ -f "$OUTPUT_PATH" ]
|
||||||
then
|
then
|
||||||
echo "Converting ${INPUT_FILE} to MP4 at ${OUTPUT_PATH} ..."
|
echo "Converting ${INPUT_FILE} to MP4 at ${OUTPUT_PATH::-4}.mp4 ..."
|
||||||
ffmpeg -loglevel fatal -nostdin -i "$INPUT_FILE" "${OUTPUT_PATH::-4}.mp4"
|
ffmpeg -loglevel fatal -nostdin -i "$INPUT_FILE" "${OUTPUT_PATH::-4}.mp4"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user