Hidden Message

As any quick internet search will turn up, the clip in question is from the end of the Judas Priest song "Beyond the Realms of Death". Knowing this, it's easy to figure out the words when played forwards (I'll give you a hint, it's the title of the song).

Played backwards, you are supposed to be able to hear the words "I took my life". Knowing this, it's very easy to hear these words while listening to the clip. This doesn't really mean much though, if you've ever searched for misheard lyrics on youtube you know what I mean.

Personally, all I heard was gibberish while playing the song either forwards or backwards until I looked it up and figured out what the song was supposed to be saying.

Here are the clips I got from my code:

Media:Judas_Priest_Reversed_ECE301Fall2008mboutin.ogg

Media:Judas_Priest_Reversed_(Half_time)_ECE301Fall2008mboutin.ogg

Matlab Code

% This code is meant to discover the supposedly subliminal
% message hidden at the end of the Judas Priest song
% "Beyond The Realms of Death". First, the clip will play
% forwards, then reversed, and then reversed at half time.
% You be the judge.

%clear out everything
clc
clear

%Read in the file and get sample rate, etc.
[data, sample_rate, bits_per_sample] = wavread('E:\School\ECE301\jpforward.wav');

%Play clip forward at normal speed
wavplay(data,sample_rate)

%Flip data
data=flipud(data);

%Play clip reversed
wavplay(data,sample_rate)

%Play clip reversed at half speed
wavplay(data,sample_rate/2)

Alumni Liaison

Prof. Math. Ohio State and Associate Dean
Outstanding Alumnus Purdue Math 2008

Jeff McNeal