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:11
2011 macbook turning on. Recordists peter brucker / recorded 4/21/2018 / shotgun microphone / 2011 macbook turning on.
作者: Xfixy
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: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: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:37
Bumping some apples together. Dumping or pouring about 4 pounds of apples into a plastic kitty litter bin. The first few with a towel muting the table. The others with a hollow impact sound with the table. Recorded with at 2020 condenser mic in adobe audition.
作者: Scratchnsniff
00:00
01:35
Qrm listened in am mode on 80 m band in my qth jn79ek. If i use cw mode listening and narrow filter, the qrm is mostly worse. Strength: peaks s9+40 db. Sometimes any traffic impossible. From -41st sec. Of record is possible to heard my tuning around frequency.
作者: Okhas
00:00
00:32
Barmixing / blending an apple in milk to get a very aggressive blending sound. Used as foley for a horror film.
作者: Sassaby
00:00
00:52
Recording of an apple iwatch ver. 6 using a akg pro audio c411 pp high-performance miniature condenser mic. Recorded on mixpre10t. Using thin double back tape, i taped the back of the mic to the back of the watch. This watch has cell phone option. I think the intermittent burst of static is the cell phone in the watch ranging signal, similar to a full size cell phone pulsing when they range signals. If anyone knows, leave a message.
作者: Leo
00:00
00:13
An apple airpod case opening and closing.
作者: Shockwavevfx
00:00
16:40
Field recording from mollem national park/inside the jungle part 1.
作者: Byronbyron
00:00
00:08
This is a lead synth sound i made for the xs24 on the nord modular g2 and universal audio uad emulations of the neve eqs, ln1176 limiter, 88rs, fairchild, and pultec eqs. Also used the joe meek eq from protools.
作者: Kuru
00:00
00:18
Some goa synth i created in fl studio a while ago using the pro 53 vst synth. Basically a saw wave form with glide or portamento, this nice lfo lpf in fl studio called fruity love synth, slight hpf, slight distorition (blood overdrive), a little compression, a little pannomatic, the right amount of delay and reverb. Presto!.
作者: Untitled
00:00
00:52
A synth i made for the trance beat i just uploaded 😃😢😲.
作者: Untitled
1 - 50 共 5,346 下一頁
/ 107