5,346 免版稅 音軌,用於"開心果"

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: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:08
Opening a packet of sweet mints.
作者: Nita
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:03
This one just happened. Has its origins in a very old movie, modern problems.
作者: Nuncaconoci
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:09
Plastic tub open & close.
作者: Caitlin
00:00
00:10
Recorded with zoom h5 & ntg3.
作者: Toddcircle
00:00
00:01
An all-american expression of annoyance.
作者: Nuncaconoci
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
01:54
作者: Kevin MacLeod
00:00
00:02
Pulsaciones.
作者: Marianabetancure
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: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: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:35
Recorded on zoom h6 by luba maznova.
作者: Digital.Arts
00:00
00:60
Heart monitor steady, then slows down and stops, alarms for loss of vitals.
作者: Guitarguy
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:10
Latidos del corazón para escena de tensión (sound recorded in a studio simulating heartbeats for a tense scene.
作者: Atrius
00:00
00:07
Es el sonar de tascar un trozo a la manzana.
作者: Saul
00:00
00:42
Making fruit juice with a juice extractor. X/y stereo (zoom h5).
作者: Mar
00:00
01:01
Meant to imitate a heart rate monitor for a steady, calm heartbeat. This track is loopable for your longer heart rate needs.
作者: Sidequesting
00:00
00:38
This is a vague, subtle and deep recording of a heartbeat.
作者: Untitled
00:00
00:30
Heart beat made with a piece of a pijama.
作者: Cabusta
00:00
00:08
Heartbeat-ish remix of freesound #267623 originally by toiletrolltube.
作者: Timbre
00:00
00:50
The heartbeat of my son.
作者: Paisagemsonoraunila
00:00
00:19
It is a heart rate. Created with audacity. You can use it for game and movie scenes.
作者: Palkonimo
00:00
00:44
Because i dislike the banal one. . .
作者: Churchyard
00:00
03:49
My heartbeat, recording with low eqing and a shure sm58. There's some moving of a microphone and a little bit of breathing. Towards the end i take a sample of my computer.
作者: Shojin
00:00
00:27
Heart beat - home made recording of footsteps eq'd to hell via rewire into protools. .
作者: Martian
00:00
00:01
A single beat, synthesized, similar with a human heart beat.
作者: Garotasimpatica
00:00
00:06
By tapping the back of my lap top, i made an unusual heartbeat. Removed hissing, added a deeper pitch and deleted certain beats for a somewhat rhythmic beat.
作者: Lisakale
00:00
00:21
Heart beating slowly (26 bpm).
作者: Frantramp
1 - 50 共 5,346 下一頁
/ 107