(New page: == Wave Files == Media: reverse.wav == Matlab Code == <pre> % Eric Zarowny % ECE 301 HW 1.2 % Just in case... clear; clc; % Generate the forwards column vector [forwards, sample_rat...)
 
(Message)
 
Line 22: Line 22:
  
 
== Message ==
 
== Message ==
Forwards: I think it says "Beyond the Realms of Death" but I'm not 100% on that because the quality is horrible.
+
Forwards: I think it says "Beyond the Realms of Death" but I'm not 100% on that because the quality is horrible.<br>
 
Backwards:  It says "I took my life".  No need to slow it down to hear that.  Odd that it's easier to hear the reverse message.
 
Backwards:  It says "I took my life".  No need to slow it down to hear that.  Odd that it's easier to hear the reverse message.

Latest revision as of 15:39, 4 September 2008

Wave Files

Media: reverse_ECE301Fall2008mboutin.wav

Matlab Code

% Eric Zarowny
% ECE 301 HW 1.2

% Just in case...
clear;
clc;

% Generate the forwards column vector
[forwards, sample_rate, bits_per_sample]=wavread('jpforward.wav');

% Flip forwards column vector and put it into a new vector
reverse = flipud(forwards);

% Write out file
wavwrite(reverse, sample_rate, bits_per_sample, 'reverse.wav')

Message

Forwards: I think it says "Beyond the Realms of Death" but I'm not 100% on that because the quality is horrible.
Backwards: It says "I took my life". No need to slow it down to hear that. Odd that it's easier to hear the reverse message.

Alumni Liaison

has a message for current ECE438 students.

Sean Hu, ECE PhD 2009