Browse Source

Fix tempo for realsies

Joe Ceresini 3 years ago
parent
commit
bde5ad95cc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      powerhour.sh

+ 1 - 1
powerhour.sh

@@ -37,7 +37,7 @@ for i in {1..59}; do
   outfile="clip-$i.wav"
   infile="_$outfile.tmp"
   mv $outfile $infile
-  tempo=$(echo "0.033 * $i"| bc)
+  tempo=$(echo "1 + (0.02 * $i)"| bc)
   $FFMPEG -i $infile -filter:a "atempo=$tempo" -vn $outfile
   rm $infile
 done