raspberry pi zero based drum machine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

fade_out.sh 215B

123456789
  1. #recursivly (from current directory) apply fade out to all wavs
  2. find . -name "*.wav"|while read w
  3. do
  4. echo "$w"
  5. echo $w
  6. sox "$w" "${w%.wav}_.wav" fade 0 $(soxi -D "$w") 0.00045
  7. mv "${w%.wav}_.wav" "$w"
  8. done