|
|
|
|
|
by jcelerier
1752 days ago
|
|
you can do that trivially with sox (http://sox.sourceforge.net/sox.html) alias fx="sox - -t wav -"
cat foo.wav | fx overdrive | fx reverb | play -
considering that sox has existed since the early 1990's, I'd wager that the demand for that isn't exactly huge(note that in practice you'd directly use sox's play command to apply effects as it's certainly muuuuuuuuuuuch more efficient than to spin up a ton of processes which'll read from stdin/stdout) |
|