17,928 Royalty-Free Audio Tracks for "File"

00:00
01:20
Steady back-and-forth filing on a block of wood using a large-tooth rasp file. Also sounds like steady sawing.
Author: Ted Erski
00:00
00:15
Two "open and close" sequences of a metal filing cabinet drawer.
Author: C V
00:00
00:35
A woman & a man say questions how to use online convert. 1:the woman say a question2:the man answer the question and say the response.
Author: Marcospurziani
00:00
00:08
Impulse response from a teisco 450e delay/chorus effect unit. Old and grungy delay with max feedback. Requires lots of filtering before use but authentic and rare. .
Author: Johnnyguitar
00:00
00:02
This is a test, for testing. Only 8khz by the way. Why waste the space with quality i ask!?.
Author: Qubodup
00:00
00:15
The sound of bending a file folder in various ways. No credit is required to be given when using this sound. However, i'd be happy to know where these sounds are being used and what projects the community is working on!.
Author: Mpierluissi
00:00
00:01
Hacked up a header file of an excel file.
Author: Ktar
00:00
00:12
A nail file being used to file nails. A rough and scratchy sound. Recorded with a zoom h6 and a stereo microphone (rode ntg2).
Author: Biancadrey
00:00
00:29
This file has no description, and may be lacking other information. Please provide a meaningful description of this file.
Author: Chana
00:00
00:24
Gary Adams, File was created using Scala to convert a sequence file of the major intervals in equal temperament to midi. It was then converted to an ogg file.
Author: SoundOfNumbers at English Wikipedia
00:00
00:03
Simple flashlight sounds that you can chop up and use in anything with a audacity file included! https://www. Mediafire. Com/file/ft48kjlgf35ie9z/flashlight+clicks. Aup3/file.
Author: Groovyhak
00:00
00:04
Some of an executable file opened in audacity recorded as a wave file.
Author: Dereict
00:00
01:39
Midi file of BWV 612 from the Orgelbüchlein adapted from lilypond file on Mutopia
Author: J.S.Bach
00:00
01:10
Midi file of BWV 613 from the Orgelbüchlein adapted from lilypond file on Mutopia
Author: J.S.Bach
00:00
00:58
Midi file of BWV 638 from the Orgelbüchlein adapted from lilypond file on Mutopia
Author: J.S.Bach
00:00
00:44
Midi file of BWV 628 from the Orgelbüchlein adapted from lilypond file on Mutopia
Author: J.S.Bach
00:00
01:19
Midi file of BWV 635 from the Orgelbüchlein adapted from lilypond file on Mutopia
Author: J.S.Bach
00:00
00:25
This is the replacement file for guitarez loop. Wav, which i screwed up. This is the same loop file, for the above mentioned file. Now it should work.
Author: Tedski
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
00:03
A thin file on a bassoon reed tip. Recorded using a zoom h5.
Author: Bassoonrckr
00:00
03:51
Sucking my husband off and making him cum.
Author: Thisgirl
00:00
01:15
Stereo recording by pond with loud frogs and audible birds. Some wind noise. Note i've now uploaded a "noise reduced" version. Search my sounds (the ones by "maphill").
Author: Maphill
00:00
00:38
A large truck (a garbage truck if i remember right) driving by. In stereo.
Author: Maphill
00:00
03:56
The recording presents the sound of a little steam locomotive with a single carriage departing and arriving, blowing the whistle with in the background dogs and voices of sardinians in the train and on the station. Early may, late afternoon. Recorded with olympus ls5.
Author: Sardaramas
00:00
00:04
This file has no description, and may be lacking other information. Please provide a meaningful description of this file.
Author: User:Henry Flower
00:00
02:55
The. Wav file version of previously posted highway traffic file, to reduce artifacts.
Author: Cognito Perceptu
00:00
06:29
This file has no description, and may be lacking other information. Please provide a meaningful description of this file.
Author: No machine-readable author provided. Sriharip assumed (based on copyright claims).
00:00
01:34
Midi file of BWV 601 from the Orgelbüchlein adapted with different instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
00:51
Midi file of BWV 640 from the Orgelbüchlein adapted with new instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
01:09
Midi file of BWV 607 from the Orgelbüchlein adapted with different instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
00:43
Midi file of BWV 644 from the Orgelbüchlein adapted with different instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
01:16
Midi file of BWV 630 from the Orgelbüchlein adapted with new instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
01:32
Midi file of BWV 625 from the Orgelbüchlein adapted with different instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
01:20
Midi file of BWV 642 from the Orgelbüchlein adapted with new instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
00:48
Midi file of BWV 623 from the Orgelbüchlein adapted with new ornamentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
01:52
Midi file of BWV 605 from the Orgelbüchlein adapted with different instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
00:59
Midi file of BWV 632 from the Orgelbüchlein adapted with different instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
01:52
Midi file of BWV 620 from the Orgelbüchlein adapted with new instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
01:06
Midi file of BWV 599 from the Orgelbüchlein adapted with different instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
00:53
Midi file of BWV 6o3 from the Orgelbüchlein adapted with different instrumentattion from lilypond file on Mutopia
Author: J.S.Bach
00:00
00:51
Midi file of BWV 619 from the Orgelbüchlein adapted with new instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
00:51
Midi file of BWV 626 from the Orgelbüchlein adapted with different instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
03:31
Midi file of BWV 627 from the Orgelbüchlein adapted with new instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
00:48
Midi file of BWV 629 from the Orgelbüchlein adapted with new instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
01:24
Midi file of BWV 624 from the Orgelbüchlein adapted with new instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
01:18
Midi file of BWV 621 from the Orgelbüchlein adapted with new instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
01:36
Midi file of BWV 616 from the Orgelbüchlein adapted with new instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
01:19
Midi file of BWV 604 from the Orgelbüchlein adapted with different instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
00:51
Midi file of BWV 606 from the Orgelbüchlein adapted with different instrumentation from lilypond file on Mutopia
Author: J.S.Bach
00:00
00:46
Midi file of BWV 602 from the Orgelbüchlein adapted with different instrumentation from lilypond file on Mutopia
Author: J.S.Bach
51 - 100 of 17,928 Next page
/ 359