Sound File

Played Backwards : http://kiwi.ecn.purdue.edu/ECE301Fall2008mboutin/index.php/Image:Jpbackrward.wav

The alleged message is "I took my own life"

MATLAB Code

%Collin Phillips
clear;
clc;


songnorm='./jpforward.wav'; %calls file
[fw,rate,bps]=wavread(songnorm); %reads  file 
bw=flipud(fw); %flips the file
slow=rate/1.7; %slows down the song
wavplay(fw,rate); %plays song forwards
wavplay(bw,slow); %plays song backwards
wavwrite(bw,slow,'jpbackwards.wav'); %writes the file as a wav

Alumni Liaison

Abstract algebra continues the conceptual developments of linear algebra, on an even grander scale.

Dr. Paul Garrett