(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
== Sound File== | == Sound File== | ||
− | Played Backwards : | + | Played Backwards : http://kiwi.ecn.purdue.edu/ECE301Fall2008mboutin/index.php/Image:Jpbackrward.wav |
+ | |||
+ | The alleged message is "I took my own life" | ||
== MATLAB Code == | == MATLAB Code == | ||
Latest revision as of 15:59, 4 September 2008
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