[fix] remove tracking file

This commit is contained in:
Knah Tsaeb 2013-07-26 13:51:52 +02:00
parent 89b0c53564
commit 2613e88354
1 changed files with 0 additions and 36 deletions

View File

@ -1,36 +0,0 @@
#!/bin/bash/
finalDest=/srv/http/sovigall.local/videos/
tempDest=/srv/http/sovigall.local/tmp/
threads=3 # nb cpu core - 1
cd $tempDest
nbProcessLauch=$(ps -e | grep -v grep | grep youtube-dl | wc -l)
if [ $nbProcessLauch != 0 ]
then
echo 'bye'
exit
fi
for file in $tempDest*.hash
do
if [[ -f $file ]];
then
while read urlHash url destination
do
youtube-dl -R 0 -c --write-thumbnail --write-info-json --recode-video webm --no-check-certificate -f 45/46/37/45/22/44/35/34/5 -o "$urlHash.%(ext)s" "$url"
sleep 5
if [ ! -f $urlHash.*.part ]
then
rm $file
sleep 1
mv $urlHash* $finalDest$destination
fi
done < $file
fi
done
# -rc_lookahead 16 -g 360 -threads 3