mirror of
https://github.com/JanJastrow/ViThumbs.git
synced 2024-11-23 15:49:55 +01:00
Changed 120 to non-system variable
This commit is contained in:
parent
6f4ad038a7
commit
374e1b1fa2
12
vithumbs.sh
12
vithumbs.sh
@ -1,15 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
echo "usage: ./vithumbs.sh INPUT [COLUMNS=5] [ROWS=5] [SIZE=1600]"
|
||||
echo "usage: ./vithumbs.sh INPUT [COLS=5] [ROWS=5] [SIZE=1600]"
|
||||
exit
|
||||
fi
|
||||
|
||||
# Define variables
|
||||
INPUT=$1
|
||||
COLUMNS=$2
|
||||
if [ -z "$COLUMNS" ]; then
|
||||
COLUMNS=5
|
||||
COLS=$2
|
||||
if [ -z "$COLS" ]; then
|
||||
COLS=5
|
||||
fi
|
||||
ROWS=$3
|
||||
if [ -z "$ROWS" ]; then
|
||||
@ -19,7 +19,7 @@ SIZE=$4
|
||||
if [ -z "$SIZE" ]; then
|
||||
SIZE=1600
|
||||
fi
|
||||
NFRAMES=$(echo "scale=0;$COLUMNS*$ROWS" | bc)
|
||||
NFRAMES=$(echo "scale=0;$COLS*$ROWS" | bc)
|
||||
DURX=$(ffmpeg -i "$INPUT" 2>&1 | grep Duration | awk '{print $2}' | tr -d ,)
|
||||
DURATION=$(ffmpeg -i "$INPUT" 2>&1 | grep "Duration"| cut -d ' ' -f 4 | sed s/,// | sed 's@\..*@@g' | awk '{ split($1, A, ":"); split(A[3], B, "."); print 3600*A[1] + 60*A[2] + B[1] }')
|
||||
RES=$(ffprobe -v error -select_streams v:0 -show_entries stream=width,height -of csv=s=x:p=0 "$INPUT")
|
||||
@ -50,7 +50,7 @@ ffmpeg -start_at_zero -copyts -ss $OFFSET -i "$INPUT" -vf "drawtext=fontfile=$FO
|
||||
done
|
||||
|
||||
# Merge thumbnails into tile image
|
||||
ffmpeg -pattern_type glob -i "${TMPDIR}*.png" -filter_complex tile=${COLUMNS}x${COLUMNS}:margin=4:padding=4:color=white ${TMPDIR}output.png
|
||||
ffmpeg -pattern_type glob -i "${TMPDIR}*.png" -filter_complex tile=${COLS}x${ROWS}:margin=4:padding=4:color=white ${TMPDIR}output.png
|
||||
|
||||
# Output metadata to file
|
||||
echo "Filename: $INPUT" >>${TMPDIR}metadata.txt
|
||||
|
Loading…
Reference in New Issue
Block a user