168 Royalty-Free Audio Tracks for "Int"

00:00
00:25
Grabación zoom h6 interior universidad casi vacia.
Author: Kintana
00:00
02:06
Car noises. Dings, windows, door open close.
Author: Zolopher
00:00
01:05
Recorded with a zoom hn-4 internal mics.
Author: Mzui
00:00
01:01
Distant siren, interior perspective, aahrus, denmark (2012). Sony m10.
Author: Trp
00:00
00:49
Rain against garage window. Zoom h2 internal mics.
Author: Trp
00:00
01:53
Wind howls from hotel window, newfoundland. Zoom h2 internal mics.
Author: Trp
00:00
05:44
Wind howls from hotel window, newfoundland. Zoom h2 internal mics.
Author: Trp
00:00
07:16
Wind howls from hotel window, newfoundland. Zoom h2 internal mics.
Author: Trp
00:00
01:08
Recorded with a zoom hn-4 internal mics.
Author: Mzui
00:00
02:16
Wind howls from hotel window, newfoundland. Zoom h2 internal mics.
Author: Trp
00:00
01:57
Wind howling in house ventilation.
Author: Takkyi
00:00
01:08
Recorded with a zoom hn-4 internal mics.
Author: Mzui
00:00
05:32
Just the kind of thing to keep you from sleeping. . . :).
Author: Kyles
00:00
00:02
Recording using a schoeps mk4 to a zoom h5.
Author: Shoryzow
00:00
15:18
General ambiance at gate 29 from piedmont triad intl. Airport in greensboro, nc on august 18, 2018, at about 9:30 am, as i was waiting for a flight to nyc. Includes some distinct conversation, announcements, background music and distant plane sounds. Recorded with a shure mv88 attached to an iphone 8.
Author: The Toilet Guy
00:00
02:55
I'm friendly with the clerks at my local 7-11 convenience store in studio city, so i asked if i could leave my mic on the back counter for a few minutes. Interesting door bell when customers come and go, as well as the sound of babies crying, etc. Recorded with: sanken cs-1e, fostex fr2le.
Author: Conleec
00:00
00:10
Actual interior recording, of an actual peugeot 406 hitting an actual ford ka. Interior, aggressors perspective. Sehnheiser mkh50 > sound devices 788t. This is dedicated to the ass-saving freesound. Org has done over the years. Feel free to use.
Author: Pauliusi
00:00
00:43
Recorded inside tram 13 in amsterdam, holland. You can hear people, tram and announcement. For longer recording or requests contact erilee.
Author: Erilee
00:00
01:36
Recorded crowd inside the central station in amsterdam, holland. For longer recordings or requests contact erilee.
Author: Erilee
00:00
03:24
I closed my bedroom window, popped a shotgun mic in the middle of the room and recorded the ambiance while it was drizzling outside. Hope this helps in anyway.
Author: Abrahamrahardja
00:00
02:26
Sounds of a running shower, with water hitting the floor, the soap and shampoo containers and also water running down the drainage. If you use this, and would like to credit me, i would be honored, but if you don't, that is fine as well. Hope this is useful for you.
Author: Abrahamrahardja
00:00
01:07
Recorded with a zoom hn-4 internal mics.
Author: Mzui
00:00
00:11
Security alarm in an office with some background reactions. Disabled at the end.
Author: Julien Matthey
00:00
00:30
Entering a lift then going 2 levels up with doors and bip sound.
Author: Julien Matthey
00:00
02:41
Inside the train station «gare du nord» in brussels.
Author: Slmdavid
00:00
00:11
Sound of the rain as heard through walls in an interior environment. Heavily processed with audacity, but should sound nicely realistic and should loop well. Feel free to do whatever you feel like with it!.
Author: Sayuri Odin
00:00
00:46
Recorded with a zoom hn-4 internal mics.
Author: Mzui
00:00
00:48
Recorded in office wc. 3 little different sound devices in one room. In stereo ).
Author: Vhlam
00:00
02:42
Ambiance in a ship from paros to santorini, recorded with a zoom h4.
Author: Kro
00:00
03:10
Mono recording of a flickering fluorescent light inside kids boarding school foyer / entrance hall. You can occasionally hear cars passing by. Also sometimes slight movement around the room and kids talking and shouting upstairs. Recorded on sounddevices 633 with sennheiser mkh 60.
Author: Temponatura
00:00
04:12
Little spanish walla with some roomy echo. Dollar pizzas at this place.
Author: Kyles
00:00
01:07
Quiet interior of amtrak empire train to nyc. Some track noise and whistles.
Author: Samwd
00:00
06:17
You may use this file alone, in a stereo track, or with the mono file with the same name in this package, making a lcr track.
Author: Cristiano Scherer
00:00
00:40
Rainfall ambient from the middle of my living room using zoom h4n onboard mic.
Author: Jongrubbs
00:00
01:18
Recorded with a zoom hn-4 internal mics.
Author: Mzui
00:00
01:60
Recorded with a zoom hn-4 internal mics.
Author: Mzui
00:00
00:46
Zoom h1n inside the freezer compartment of an old refrigerator.
Author: Abrahamrahardja
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
08:09
Small family restaurant ambience with kids and adults talking in the background.
Author: Mshahen
00:00
01:11
Metal tool scraping exterior wall, recorded from inside with a zoom h4.
Author: Bmellow
00:00
00:12
An old doorbell ringing distant perspective. Recorded in an apartment with zoom h4n pro.
Author: V
00:00
03:17
Varied movements of a squeaky wooden door, apartment interior. Sd633 schoeps ms decoded to stereo.
Author: Alexlane
00:00
00:12
2 persons walking upstairs on a wooden steps in a spacious room.
Author: Antwerpsounddesign
00:00
02:58
Cuban cab in town, few if any passbys. Recorded on an h2 in 4-channel mode.
Author: Kyles
00:00
00:07
Grito sutil con intension de fastidio o frustracion/ subtle scream with intent of annoyance or frustration. Mic: microfono de contacto.
Author: Eldiariosonoro
00:00
02:08
Roomtone of the interior of a barn, with constant creak, cracks, rattle, metal, can be used during storm, quite mysterious, recorded at 48-16 with portable dat using schoeps ms ball, edited and decoded in stereo in pt.
Author: Martypinso
00:00
01:06
My wife bought me this cool remote control helicopter for my birthday, so i recorded it flying around the room. At the very end, the blades knick the wall a couple times before it falls to the floor and stops. Attribution is not necessary, but if you use it, i'd love to hear what you did with it. Recorded with: sanken cs-1e, fostex fr2le.
Author: Conleec
00:00
00:59
An electric clock, ticking. Kinda noisy, but useable in some circumstances, i hope. Recorded with: sanken cs-1e, fostex fr2le.
Author: Conleec
51 - 100 of 168 Next page
/ 4