浏览代码

Fix tempo for realsies

Joe Ceresini 4 年之前
父节点
当前提交
bde5ad95cc
共有 1 个文件被更改,包括 1 次插入1 次删除
  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