summaryrefslogtreecommitdiff
path: root/imgs2vid.sh
blob: a773ebee394a209f29920aad3ea09e48383632ff (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
#take a bunch of image files and turn them into a video

if [[ ${#} != 2 ]]; then
	echo "provide file pattern and destination filename"
	exit 0
fi
echo $@
echo "THIS IS SCRIPT IS NOT CURRENTLY WORKING"
ffmpeg -framerate 8 -pattern_type glob -i "${1}" "${2}"