24 Royalty-Free Audio Tracks for "Void"

00:00
00:04
Sonido de vació.
Author: Kriptonauta
00:00
00:17
A production sound created for a film project where the character is looking into the void of a black hole - and the emptiness overwhelms. The track is rooted in me slowly exhaling across the microphone. A flanger and low-pass filter is responsible for the rest!. Created on 04/17/2021 with an h4n and sennheiser shotgun mic.
Author: Ericnorcross
00:00
01:07
Someone plays in the void.
Author: Mrphidle
00:00
00:13
- well, this is just one of several totallyrandom melodies created by me. - i created it at sony vegas, putting together severalpieces of sounds until it became a melody. - i did this in order to help people create simplegames without having to pay for sounds. - it is completely free and you canuse it however you want!(no credit required). - but if it helps you in any way, you can make a smalldonation of any amount through paypal. Https://www. Paypal. Com/donate?business=n6tn482vc8puj&item_name=any+help+is+welcome%21&currency_code=brl.
Author: Tiagothanos
00:00
00:13
Nice to the ears.
Author: Mrphidle
00:00
00:09
Opening an ancient airlock.
Author: Efd
00:00
04:27
Dystopian train ride sound effect.
Author: Efd
00:00
00:03
Just the sound of blowing into the microphone.
Author: Helhel
00:00
00:50
Originally made with an alesis ion synthesizer and then processed through absynth 5 with additional sound effects, mainly consisting of reverberation and granular synthesis. *i'm open to take requests for certain sounds or music you may need for any project*.
Author: Caderesounds
00:00
00:03
Sound of a Comet flying through the sky. Great astral space or science fiction sound effect. Could even be used for a rocket or missile.
Author: Untitled
00:00
02:31
The melody of void.
Author: Dareaper
00:00
00:16
Bass synth for creepy ambience.
Author: Tenshi Mixer
00:00
00:60
This is a sonority developed in the void where the space has its infinity.
Author: Justabeat
00:00
00:03
Good for your analog horror n void meme needs. Slapped with reverb and a couple of otts.
Author: Excelrandom
00:00
08:02
An eight minute long soundscape i made for an episode of an audio fiction podcast. Intended to give the impression of a strange and otherworldly empty void, and to mildly imply sci-fi machinery with a spiritualist undertone. However, could easily be used for other projects where you want to create a feeling of discomfort, or of being in a strange and empty place.
Author: Chapterspod
00:00
00:57
Morphagene reel made with ni reaktor the void a drones & textures - rhythm stepper. The cue markers were made with a python script from https://gist. Github. Com/ferrihydrite/d7602f94c0aa940ba63f4fae809a2385.
Author: Neutrinosalat
00:00
00:02
Speech recorded and processed by me for casual game "chile vs aliens"game: http://sumersion. Com/studio/games/mundial-chile-vs-aliens/recorded with tascam dr-40 and rolled nt1, fx: uhe g.
Author: Gattoangus
00:00
00:60
the void is a piece of music i made in garageband for a thing called victors crypt. Could be perfect for an intro, outro, something spooky and cool, suspence, sci-fi, futuristic, mysterious or whatever you feel like. . . . Let the imagination run wild. Feel free to use it as you like as long as you subscribe to and watch my channel! if you wanna use it in your music and gonna release it, ask me first. Don't wanna see my music copyrighted by someone else of course. Be cool watch and subscribe to victors crypt:https://www. Youtube. Com/channel/uca8o46_wrqzehsdzuwfq3rq. Throw horns, dance & hail satan!.
Author: Victor Natas
00:00
00:01
Start sound of mac ii iix iicx iici se/30. Create by dissessemble rom code and use wave table algorithm write c program write wav file. C program below:. /* mac_ii. C *//* boot beep mac ii *//* 2558/09/06 */. #include. #define knumber_samples 30000#define kdelay_note 300#define kwave_table_value 0x30013f10#define ksample_rate 22257 // hz. Void preparewavetable( unsigned short *wavetable, unsigned int value );void updatewavetable( unsigned short *wavetable, unsigned short chiso );void savesound( char *filename, short *sounddata, unsigned int numberframes, unsigned int samplerate );. Int main () {. // ---- wave tableunsigned short wavetable[256];// ---- sound data, stereoshort sounddata[knumber_samples << 1];// ---- increment array (16/16 bit fix point integer)int arrayincrement[] = {3 << 16, 4 << 16, (3 << 16) + 0x2f2, 6 << 16};// ---- prepare wave tablepreparewavetable( wavetable, kwave_table_value );. // ---- array phase (16/16 bit fix point integer)unsigned int arrayphase[] = {0, 0, 0, 0}; // set all = 0. Unsigned int samplenumber = 0;while( samplenumber < knumber_samples ) {. // ---- calculate sampleunsigned int channelleft = 0;unsigned int channelright = 0;unsigned char notenumber = 0;while ( notenumber < 4 ) {// ---- see if should update phase for note, only do if play noteif( samplenumber >= notenumber*kdelay_note ) {// ---- up date phase beforearrayphase[notenumber] += arrayincrement[notenumber];// ---- not let out of range [0; 255]if( arrayphase[notenumber] > 0xff0000 ) // 0xff0000 == 255 << 16arrayphase[notenumber] -= 0xff0000; // return to begin of wave table}unsigned short mauvat = wavetable[arrayphase[notenumber] >> 16];. // ---- add sound componentsif( notenumber < 2 ) // ---- first 2 notes left channelchannelleft += mauvat;else // ---- last 2 notes right channelchannelright += mauvat;// ---- next notenotenumber++;}// ---- save left and right samplessounddata[samplenumber << 1] = (channelleft << 9) - 0x8000; // use << 1 for 16 bitsounddata[(samplenumber << 1) + 1] = (channelright << 9) - 0x8000; // use << 1 for 16 bitupdatewavetable( wavetable, samplenumber & 0xff );samplenumber++;}// ---- save wav filesavesound( "mac ii. Wav", sounddata, samplenumber << 1, ksample_rate ); // multiply 2 because stereo. Return 1;}. Void preparewavetable( unsigned short *wavetable, unsigned int value ) {. // ---- prepare wave tableunsigned short index = 0;unsigned short wavetablevalue = value & 0xff;while( index < 64 ) {wavetable[index] = wavetablevalue; // << 8; // for 16 bitindex++;}. Wavetablevalue = (value >> 8) & 0xff;while( index < 128 ) {wavetable[index] = wavetablevalue; // << 8; // for 16 bitindex++;}. Wavetablevalue = (value >> 16) & 0xff;while( index < 192 ) {wavetable[index] = wavetablevalue; // << 8; // for 16 bitindex++;}wavetablevalue = (value >> 24) & 0xff;while( index < 256 ) {wavetable[index] = wavetablevalue; // << 8; // for 16 bitindex++;}}. Void updatewavetable( unsigned short *wavetable, unsigned short index ) {// ---- get value from wave tableunsigned short value = wavetable[index];// ---- calculate new value for wave tableif( index == 255 ) { // careful at last element of wave tablevalue += wavetable[0];value = (value >> 1);wavetable[0] = value;}else {value += wavetable[index+1];value = (value >> 1);wavetable[index+1] = value;}. }. #pragma mark ---- save wavvoid saveheader( file *filename, unsigned int samplerate );void savesounddatainteger16bit( file *filename, short *sounddata, unsigned int numbersamples );. Void savesound( char *filename, short *sounddata, unsigned int numberframes, unsigned int samplerate ) {// ---- open filefile *file = fopen( filename, "wb" );if( file ) {// ---- "riff"fprintf( file, "riff" );// ---- length sound file - 8unsigned int lengthsoundfile = 32;lengthsoundfile += numberframes << 1; // một không có một mẫu vạt cho kênh trái và phải// ---- save file lengthfputc( (lengthsoundfile) & 0xff, file );fputc( (lengthsoundfile >> 8) & 0xff, file );fputc( (lengthsoundfile >> 16) & 0xff, file );fputc( (lengthsoundfile >> 24) & 0xff, file );// ---- "wave"fprintf( file, "wave" );// ---- save headersaveheader( file, samplerate );// ---- save sound datasavesounddatainteger16bit( file, sounddata, numberframes );// ---- close filefclose( file );}else {printf( "problem save file %s\n", filename );}}. Void saveheader( file *file, unsigned int samplerate ) {// ---- name for header "fmt "fprintf( file, "fmt " );// ---- header lengthfputc( 0x10, file ); // length 16 bytefputc( 0x00, file );fputc( 0x00, file );fputc( 0x00, file );// ---- method for encode, 16 bit pcmfputc( 0x01 & 0xff, file );fputc( (0x00 >> 8) & 0xff, file );// ---- number channels (stereo)fputc( 0x02, file );fputc( 0x00, file );// ---- sample rate (hz)fputc( samplerate & 0xff, file );fputc( (samplerate >> 8) & 0xff, file );fputc( (samplerate >> 16) & 0xff, file );fputc( (samplerate >> 24) & 0xff, file );// ---- number bytes/secondunsigned int numberbytessecond = samplerate << 2; // multiply 4 because short (2 byte) * 2 channelfputc( numberbytessecond & 0xff, file );fputc( (numberbytessecond >> 8) & 0xff, file );fputc( (numberbytessecond >> 16) & 0xff, file );fputc( (numberbytessecond >> 24) & 0xff, file );// ---- byte cho một khung (nên = số lượng mẫu vật * số lượng kênh)// ---- number bytes for sampleunsigned short bytesoneframe = 4; // short (2 byte) * 2 channelunsigned char bitsonesample = 16; // shortfputc( bytesoneframe & 0xff, file );fputc( (bytesoneframe >> 8) & 0xff, file );. Fputc( bitsonesample, file );fputc( 0x00, file );}. Void savesounddatainteger16bit( file *file, short *sounddata, unsigned int numbersamples ) {fprintf( file, "data" );unsigned int datalength = numbersamples << 1; // each sample 2 bytefputc( datalength & 0xff, file );fputc( (datalength >> 8) & 0xff, file );fputc( (datalength >> 16) & 0xff, file );fputc( (datalength >> 24) & 0xff, file );unsigned int sampleindex = 0;while( sampleindex < numbersamples ) {short shortdata = sounddata[sampleindex];fputc( shortdata & 0xff, file );fputc( (shortdata >> 8) & 0xff, file );sampleindex++;}}.
Author: Sieuamthanh
00:00
10:00
Five years ago, freesound user unfa uploaded his gift to the world --- the worlds best quality silence, a free 10 minute sample stolen from the infinite void of existential truth. Here is a edited copy of his sample, normalized to 0. 0dbfs. Because what's the point of such a recording if you don't use all the available bits?. Please see https://freesound. Org/people/unfa/sounds/231965/.
Author: Parabolix
00:00
11:48
If there is one man, white western historyhas neglected, it must be james baldwin (1924 - 1987)known to many as writer, novellist, essayistplaywright, poet. . . Surely unknown to all asactivist, as frontfighter, as luchador of theanti-xenophobic anti-discrimination discoursin general & more specific of the north-american'negro'. His father was a slave & as a childat the tender age of 10, he was teased and abusedby 2 new york police officers, an instance of the racistharassment by the nypd that he would experience againas a teenager and document in his essays. Why isn't his history & discours teached at school ?. Anno 2020, i learn to know him & his eloquent rhetoricalcapabilities through the also fenomenal moving & breath-takingperformance of tawiah + myrrh for the refraction festival, takingplace online of course, due to the ever infamous covid-19. . . An audiovisual délice, in which visual artist myrrh, places tawiahin subtle superposition with james baldwin & his 1965 debate with mr. Buckley ! in the cambridge union ! !! ! ! ! while performinglive one of the most delicate concerts i have seen during corona. . . A must see+hear _ _ _ https://www. Youtube. Com/watch?v=h5l2lssdzro. Being totally absorbed by this performance, i discover as an artist myselfone of the reasons i bind so much with this piece of music is that i myselflike to use the same harmonies, apparently, which i did indeed in 2015https://soundcloud. Com/torturado/eternal-void-the-fall-back& in the mid nineties, that is 1990's. . . A long forgotten piece of me, performed that time during my ritcs studies, as my band torturado, no recordings from then helas online, but gracias a la discovery of tawiah+myrrh & james baldwin picked up again what i remembered from that time & made a 2020 version of it. . . A small visual document of this: https://vimeo. Com/450004585. As from the moment, i discovered james baldwin, i integrated also his powerful 1965 debate in my performances during covid times. . . To spread his word ! to inspire others, to confront others. . . I told myself covid or corona is not going to stop me playing & performing music, which comes natural to me, so i looked for ways to perform outside, in plain nature, with batteries. . . Guitars, 9v fx, fx without 9v compartment, battery based amplifiers, battery based kassette walkmans. . . & it is on kassette that i put an edited full version of the james baldwin vs buckley debate of 1965. . . For this exercice of the sound design formation, we had to upload a sound that intrigues, well, james baldwin eloquent voice, litteral & metaphorically inspired & triggered me. . . Also the sound of electro-magnetic technology called tape is something i have always been fond of. . . So i made an edit of an edit of the james baldwin debate of +- 10 minutes !. Spread the word !a+. Actually this could also serve the exercice of recording a sound that comes from a certain place, or is part of a bigger thing , or personificates a certain place. . .
Author: Antwerpsounddesign
1 - 24 of 24
/ 1