610 Royalty-Free Audio Tracks for "Chime Macintosh"

00:00
00:03
This is the startup chime from an iMac. It has been highly modified in order to include the work within the Public Domain.
Author: Carlo
00:00
00:06
This is an electric chime that you might hear when walking into a store.
Author: Tambascot
00:00
00:16
This sound effect is wind chimes inside.
Author: Mtjohnson
00:00
02:52
Wind chimes on a windy day.
Author: Baybeedriver
00:00
00:11
Wind chimes.
Author: Mootmcnoodles
00:00
00:24
Recording of a wind chime.
Author: Jasonlee
00:00
00:07
Just the sound of some wind chimes with edited levelsrecording device: zoom recorder microphone.
Author: Supuhmagikarp
00:00
00:26
Wind chimes outside of my house being jingled around by myself. The thump at the end is my dog knocking a pan of rising focaccia bread off the stove.
Author: Leftovertunacasserole
00:00
01:15
Wind chimes blowing, without wind, no wind in this audio file, just the chimes.
Author: Ren
00:00
00:21
A sound of a wind-chime, hope it is useful for people.
Author: Cigaro
00:00
02:12
Wind chime recorded indoors. Add your own wind!.
Author: Jaava
00:00
02:29
A set of wind chimes recorded with my sony ecm-ds70p mic through my sony mdz-n710 into my edirol audio interface recorded into audacity. I've tried to eq out my computer fan noise but it is still present. Photo: http://www. Flickr. Com/photos/str33ty/370769496/.
Author: Streety
00:00
00:10
Wind chimes.
Author: Vgraham
00:00
00:30
Some various windchimes recorded in a controlled environment.
Author: Opalmirage
00:00
00:15
Wind chimes blowing in strong winds. The wind gusts are audible, so i'm hoping that doesn't ruin the chime sound.
Author: Leftovertunacasserole
00:00
00:13
Single strike of a wind chime, note c4.
Author: Perrydolia
00:00
00:53
Three single note chimes in one file - three different notes.
Author: Ikonochris
00:00
00:33
This is just another sound effect that i have. It is a fireplace clock chiming and then it strikes 12 times.
Author: Sl
00:00
01:30
I recorded my small wind chimes in a medium wind on my zoom h6.
Author: Eellc
00:00
00:55
Delicate musical metal wind chimes.
Author: Opmartin
00:00
00:11
Single run of wind chimes.
Author: Jcdecha
00:00
00:42
40 second sample of multiple wind chimes recorded on a windy day at home depot.
Author: Perrydolia
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:56
Recorded with sony digital cam. Noise filtered using adobe audition. Chimes died of wounds suffered in hurricane winds and this is in their memory.
Author: Memigh
00:00
00:14
Small bell chiming 3 times. Dzwonek medytacyjny dzwoniący trzy razy.
Author: Emocjeco
00:00
00:03
Recording of wind chimes.
Author: Mike
00:00
00:12
My grandfather's old clock, probably >100 years.
Author: Mawiks
00:00
00:03
Bright bell tiny sequence, maybe for a minimal techno song.
Author: Pera
00:00
00:09
Tiny glass chimes.
Author: J
00:00
00:14
Polite alternative to tooting horn at traffic light when someone is stopped ahead of you.
Author: Bpp
00:00
04:48
Recording of a wind-chime made from thin slices of glassy stone; not a geologist, so i'm not sure what kind of stone exactly, it's the colorful kind you can see thru when it's sliced very thin.
Author: Reconsider
00:00
01:16
Zaphir bells. I used:samson condenser microphone. Presonus audiobox 22vsl pre-amp. Software: studio one. Effects: yes: reverb, delaysample: my garden wind-chime. Layers: 1 voice. Recorded where: the netherlandsrecorded date: 2019-february.
Author: Ellenmentor
00:00
00:07
A quick pass through the chime with my hand.
Author: Dann
00:00
00:29
Windchimes.
Author: Nakenne
00:00
00:18
Sound of chimes. Sound recorded with a zoom h4n pro. Son d’un carillon. Son enregistré avec un zoom h4n pro. My sounds are licensed under the creative commons 0 license but it would be a pleasure for me to hear your work so doesn’t hesitate to comment or to send me a message with your work :).
Author: Samuelgremaud
00:00
00:26
Sound of chimes. Sound recorded with a zoom h4n pro. Son d’un carillon. Son enregistré avec un zoom h4n pro. My sounds are licensed under the creative commons 0 license but it would be a pleasure for me to hear your work so doesn’t hesitate to comment or to send me a message with your work :).
Author: Samuelgremaud
00:00
01:24
Metal wind chimes recorded on h4.
Author: Janbezouska
00:00
01:13
I recorded this sounds by a sound blaster live! soundcard in 2003, when i tested its highest sampling rate (96 khz). I used my philips sbc 3050 condenser electret microphone. Before uploading, in 2015, i applied a little noise reduction in audacity software.
Author: Peterhidi
00:00
00:15
Wooden wind chimes recorded on pendrive at 8khz and 16bit. Aug 2007.
Author: Laffik
00:00
00:22
Wind chimes in a cheshire garden.
Author: Highpeakemma
00:00
01:41
Just some pretty wind chimes.
Author: Hannahmajel
00:00
00:31
Windchimes.
Author: Twotrickpony
00:00
00:05
This is a sample of one of my old clocks that i used for a song. Feel free to use it as you wish!.
Author: Ecfike
00:00
02:51
4 sets of wind chimes made from silverware on a very windy day. Recorded in stereo with zoom h4 and eq'd with a low cut filter, looped 4x to extend the length.
Author: Hockinfinger
00:00
00:09
Wind chimes recorded with a pair of rode m3s in xy position in my studio.
Author: Djczyszy
00:00
00:47
What it is:a windchime. . . Chiming. What i used it for:a windchime in strange/love s1 e3. Recorded with an iphone.
Author: Williamjmeyer
00:00
00:14
Porch atmosphere; chimes.
Author: Vrodge
00:00
01:20
The lid of a household item is struck a few times to hear its resonance.
Author: Beeproductive
00:00
01:33
Bells at bachkovo monastery, recorded at 6 p. M. On a saturday in june. The monastery is in the rhodope mountains in southern bulgaria.
Author: L
00:00
00:09
Door chime from about 1995. Recorded indoors about 18" away from the unit mounted high on kitchen wall. Recorded with zoom h4n.
Author: Wjauch
1 - 50 of 610 Next page
/ 13