chord 230 B

123456789
  1. #!/bin/sh
  2. cat guitar.txt | while read chord first third fifth
  3. do
  4. echo "$chord"
  5. sox -n -r 16000 -b 16 "chord-${chord}.wav" \
  6. synth pl "$first" pl "$third" pl "$fifth" \
  7. delay 0 .05 .1 remix - fade 0 1 .095 norm -1
  8. done