Cell (mobile) phone interference noise through my speakers.
Recorded with Presonus Firebox & Samson C01.
One of the most annoying noise in the world. Thank you. X
nice rhythm at the beginning
Great sample, just what I was looking for! =D
In case you're interested, I'm planning on having a go at cutting this up to loop to use in music - I'll post a link to the cut version here if it goes well. =)
I made this simple c++ app. It plays this sound over and over randomly 1-100 sec delay. Here is the code:
#include int main(int argc, char* argv[]){ HWND hWnd = GetConsoleWindow(); ShowWindow( hWnd, SW_HIDE ); while (1){ int delay = (rand() % 100) * 1000 + 3500; PlaySound("cell-phone-interference-noise.wav", NULL, SND_ASYNC); Sleep(delay); } return 0;}
love it!!!
 |  13 comments
Please log in to comment
embed
920 x 245
481 x 86
375 x 30
Comments
One of the most annoying noise in the world. Thank you. X
nice rhythm at the beginning
Great sample, just what I was looking for! =D
In case you're interested, I'm planning on having a go at cutting this up to loop to use in music - I'll post a link to the cut version here if it goes well. =)
I made this simple c++ app. It plays this sound over and over randomly 1-100 sec delay. Here is the code:
#include
int main(int argc, char* argv[])
{
HWND hWnd = GetConsoleWindow();
ShowWindow( hWnd, SW_HIDE );
while (1){
int delay = (rand() % 100) * 1000 + 3500;
PlaySound("cell-phone-interference-noise.wav", NULL, SND_ASYNC);
Sleep(delay);
}
return 0;
}
love it!!!
 |  13 comments