Last active
December 17, 2015 10:48
-
-
Save windytan/5597022 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open(IN, "sox scrambled.wav -r 8600 -c 1 -t .s16 -|"); | |
open(OUT,"|sox -r 8600 -c 1 -t .s16 - descrambled.wav"); | |
$n = 1; | |
while (not eof IN) { | |
read IN, $a, 2; | |
print OUT pack("s",unpack("s",$a) * $n); | |
$n *= -1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment