5,390 免版税 音轨,用于"开心果"

00:00
01:52
-this sound have been recorded in mono, on a samsung s8, using the recording app ''audiorec''. I have used izotope rx 6 to remove any unwanted noise. -these sound have been made using pistachios shells inside a stainless steel container. *this sound is completely free to use without any need of giving credits(if desired). *.
作者: Lecasual
00:00
00:08
More duyên rên. Record use zoom h4n pro 2020. 01. 13 ≈20:20.
作者: Sieuamthanh
00:00
00:01
Kỳ duyên rên 0. Record use h4n pro 2019. 11. 09 20:00.
作者: Sieuamthanh
00:00
00:01
Kỳ duyên rên 1. Record use h4n pro 2019. 11. 09 20:00.
作者: Sieuamthanh
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++;}}.
作者: Sieuamthanh
00:00
00:08
Opening a packet of sweet mints.
作者: Nita
00:00
00:04
Guy saying no to an offer.
作者: Juliandmc
00:00
00:10
Opening and closing car keys.
作者: Dylanperitz
00:00
00:07
Opening a bag with nuts.
作者: Gpanska Gorbusinova Anna
00:00
00:01
Locking my iphone 10 close to the mic combined with some careful eq.
作者: Xemptful
00:00
00:05
More duyên rên. I use this for create sound 'rớtcổkhí'. Record use zoom h4n pro 2020. 01. 13 ≈20:20.
作者: Sieuamthanh
00:00
00:10
Opening a candy bar wrapper. Recorded on hdr 633 with me-67 microphone.
作者: Coltures
00:00
00:01
Openning a bottle.
作者: Niwki
00:00
00:03
This one just happened. Has its origins in a very old movie, modern problems.
作者: Nuncaconoci
00:00
00:12
Opening a candy wrapper. You can use my sounds freely. It would be great if you credit me. Leave a comment and tell me for which project you used it. Daniel lucas, danlucaz. 2019.
作者: Danlucaz
00:00
01:48
Picking up, rustling, opening, and dropping halloween candies on a desk. Includes chewy sweets in packets and chocolate coins. Might be useful for a kid on halloween checking out his stash?. No need to credit but i'm curious what you make with this!.
作者: Jarlathmc
00:00
00:11
2011 macbook turning on. Recordists peter brucker / recorded 4/21/2018 / shotgun microphone / 2011 macbook turning on.
作者: Xfixy
00:00
00:09
Plastic tub open & close.
作者: Caitlin
00:00
00:01
An all-american expression of annoyance.
作者: Nuncaconoci
00:00
01:54
作者: Kevin MacLeod
00:00
01:58
Icu intensive care unit ambience. Silent. Some machine and steps in background. Some breathing in foreground. Recorded with iphone13. Use freely on your personal commercial and non-commercial projects. Don't put this raw sounds/files on youtube or anywhere else. You can use them in creative way as a part of art-form, but not "re-distribute" as (royalty free) stock material.
作者: Tferrino
00:00
01:50
Instant mac and cheese squished and stirred with a rubber spatula.
作者: Wmaresco
00:00
00:10
Recorded with zoom h5 & ntg3.
作者: Toddcircle
00:00
00:35
Recorded on zoom h6 by luba maznova.
作者: Digital.Arts
00:00
00:02
Taking a bite from an apple.
作者: Devilqube
00:00
02:37
It sounds like skinning an animal or performing surgery. . . But it's only me carving a mango.
作者: Sycoraxi
00:00
00:25
Feel free to use it as you want. Free for commercial use.
作者: Yake
00:00
00:09
Unwrapping a chocolate candy.
作者: Urkki
00:00
02:33
A short section of a near 17 minute recording of my heart at rest. I can upload the long version at request.
作者: Grimmjowj
00:00
00:04
Pouring macaroni into a metal bowl.
作者: Lmbubec
00:00
04:49
作者: Kevin MacLeod
00:00
03:31
作者: Untitled
00:00
00:46
Squeezed lemon with juice, this was pretty tricky since its very quiet, had to wait for a really quiet momentrecorded with a schoeps cmc mk41 to sounddevices 722.
作者: Filipe Chagas
00:00
00:60
Heart monitor steady, then slows down and stops, alarms for loss of vitals.
作者: Guitarguy
00:00
00:09
Opening the wrapper of a sweet. A loud and crinkling sound came from opening the wrapper. Recorded with a zoom h6 and a stereo microphone (rode ntg2). Post-processing done to decrease the volume as it was too loud.
作者: Biancadrey
00:00
00:09
Sweets automat in entrance area. Wave, 44. 1khz, 16bit, stereorecording device: zoom h4n with xy-capsulelow-cut: yes (80hz)normalized to -1dbfslocation: campus volgershall leuphana university old building in the entrance area. Lat: 53. 25016472286296lon: 10. 382777452468872date: 2013-11-19, 16:30h. Recorded and edited by: claudio vater. This recording was created in the framework of the seminar "soundscape leuphana (ws13/14)".
作者: Soundscape Leuphana
00:00
00:07
Es el sonar de tascar un trozo a la manzana.
作者: Saul
00:00
00:38
This is a vague, subtle and deep recording of a heartbeat.
作者: Untitled
00:00
00:01
A fast heartbeat.
作者: Musictree
00:00
00:07
Obtain with filters, lo fi, distortions and other things that i can't remember. If you like it download it.
作者: Pblzr
00:00
01:10
Hello i am an all around artist currently going to school for my master's in art education. This is the first sound that i have created to represent the sounds of the heart monitor i was on due to seizures. Feel free to use this recording if you could give me credit that would be nice or you could just let me know that you used it in a comment. Hope you like it.
作者: Melnjay
00:00
00:04
A little work based on floyd's time, heart & metronome.
作者: Frantramp
00:00
00:02
Pulsaciones.
作者: Marianabetancure
00:00
00:06
Squeak of a doormat in front of a shopping mall. Recorded during "o. S. T 15,9 soundwerkstatt" at the mira shopping mall in munich, germany.
作者: Ost Soundwerkstatt
00:00
00:06
Shopping trolly in a mall parking lot.
作者: Santi
00:00
01:24
Ambience of a mall parking lot.
作者: Santi
00:00
00:29
This is the ambience inside the elevator in a shopping center that's going up 2 floors; there's 2 women riding it besides me: one is carrying a full shopping bag and the other is texting on her iphone. I recorded this with my pocket digital voice recorder.
作者: Wkg
00:00
00:24
Typing on a macbook.
作者: Thatmisfit
00:00
01:55
رج ٹکر منگوشاعر: مقصود حسنیآواز: مقصود حسنیفری ابوزر برقی کتب خانہستمبر ٢٠١٧. Raj tokar mango pujabi nazmpoet: maqsood hasni voice: maqsood hasnifree abuzar barqi kutab’khana spt. 2017.
作者: Maqsood@Mailworld
00:00
00:05
Crinkling an unopened candy wrapper.
作者: Aerolus
1 - 50 共 5,390 下一页
/ 108