Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
coffeysm said:as long as the location is in your PATH.
Could I make this script grab the current directory somehow?
DIR=$1
if [ "$DIR" != "" ]
then
cd $DIR
fi
for i in `ls *.avi`
do
ffmpeg -i $i -f mjpeg -t 0.001 -ss 5 -y $i.tbn
done
for j in `cat $HOME/dlist`
do
cd $j
for i in `ls *.avi`
do
ffmpeg -i $i -f mjpeg -t 0.001 -ss 5 -y $i.tbn
done
done
for i in `ls *.avi`,
for i in *.avi