215 royaltyfritt ljudspår för "Problem"

00:00
00:01
Extracted from camera recorded content, tidied up with audacity mono and noisegate. . . I also listen for problems and cherry pick to avoid weird sounds. . No rubbish dry sample. If you want to use these sorts of sounds (good for games or video), remeber adding reverb back is the trick to making the sound big again.
Författare: Darkshroom
00:00
01:01
A one-minute clip of bakonfreek's cc0 "dv tape (bearing) noise". The full 60 minutes caused me some download problems - i figured i'd drop this here for anyone having a similar issue. A clip from their description: this is my recreation of the noise in the background of a video shot on a consumer grade minidv camcorder (a well used one).
Författare: Sidequesting
00:00
00:01
Extracted from camera recorded content, tidied up with audacity mono and noisegate. . . I also listen for problems and cherry pick to avoid weird sounds. . No rubbish dry sample. If you want to use these sorts of sounds (good for games or video), remeber adding reverb back is the trick to making the sound big again.
Författare: Darkshroom
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++;}}.
Författare: Sieuamthanh
00:00
29:21
Calm ambient track. Winter woods / pinewood february 12. 41 pm (noon) in the netherlands near village giersbergen. Bram’s admin request-text and my answer in audio. Hello freesounders,it happens very infrequently that i post requests. However, i have an extraordinary sad reason to do so today. I don't want to go into detail in this public forum, but someone incredibly important and incredibly young in my life and my wife's just passed away. I am thus looking for an extra long recording of a peaceful "forrest ambience" to play during the good-bye ceremony. Something with some birds and perhaps some wind through the leaves,. . . . Currently the ceremony is planned for april 6th so i would need this before then. I know i can look through freesound, but i would like something specifically recorded with this in mind, something we will be able to listen to later as well, remembering this important and sad time in our life. . . Yours in grief,- bram & familywhat you hear;general-noise; soft wind in woods, sometime a bit increasing. A far kid at the edge of hamlet giersbergen. Far hum of the woods. Remark that the far high altitude planes are on a very lo noise level. Off and on craws and woodpeckers. 00. 00-02. 18 clean background-sound02. 18-06. 57 far high altitude plane- 04. 08-05. 42 people passing06. 05- 08. 13 clean background-sound- 07. 15-08. 12 woodpecker08. 16-10. 33 far high altitude plane10. 33-11. 44 clean background-sound- 10. 44-11. 32 (far) woodpeckers11. 33-12. 53 far police serine12. 55-14. 11 clean with some far yelling kids and woodpeckers14. 15-16. 14 far high altitude plane16. 14-26. 11 clean background-sound with some friendly increasing wind gusts- 23. 06-23. 56 woodpeckers- 25. 53-26. 08 woodpecker26. 08-end far high altitude plane and people. More recordings here search: giersbergen. About the area, national park loonse en drunense duinen. (text by irma de potter,ranger of this area) dutch website: https://www. Natuurmonumenten. Nl/natuurgebieden/nationaal-park-loonse-en-drunense-duinen. In the loonse en drunense duinen you will find forest, heathland and especially a lot of sand. It is one of the largest shifting sand areas in western europe. The wind can blow undisturbed in many places, resulting in an ever-changing landscape. By purchasing it in 1921, it has been protected for 100 years and we can still enjoy this brabant sahara today. You can roam freely on the sand plain. So there is plenty of room to explore extensively. Marvel at the submerged trees, enjoy the chirping field crickets and quench your thirst at one of the many cafes or restaurants on the edge of this nature reserve. Walking, cycling or on horseback: it's all possible here. With the wind in your hair and the sand in your shoes. You may even come across the sheep herd. The sheep keep the heath short and eat away saplings. This is how they keep the area open. The loonse en drunense duinen still has 270 hectares of shifting sand. That sand creates rather extreme conditions: the soil is dry and nutrient-poor. The difference in temperature between day and night can be as much as 50 degrees celsius. This ensures a unique flora and fauna. The animals and plants have adapted or feel at home in drought, aridity and temperature fluctuations. Sand sedge and various lichens, for example. And the viviparous lizard, sandpit beetles and sand bees. All species that love sand. In the last ice age, the polar winds blew sand from the north to brabant, where it remained in thick packages. For a long time this sandy plain was covered with primeval forests. Until the fourteenth century the trees were felled by people. They used the wood as fuel. The bare plain was filled with heather, where the farmers grazed their cattle. This intensive grazing and the sod cutting of the soil depleted the soil. This gave the sand free play. For a long time, the sand was a major problem for the residents. Villages and fields threatened to disappear under it. Trees were planted to stop the advancing sand. You can still see the traces of this today: find the submerged trees that only peak above the sand hills with their crowns. Date/time: february 15th tuesday 2017, start 12. 44 pm. Weather: 13c, clear sky, wind se 2-3bft , 1023 hpa. Mic pointed ne. Location; soft-wood-forest giersbergen (drunen), national park “loonse en drunense duinen”, drunen, noord-brabant, netherlands (holland), europe geo 51. 65566 5. 15774. Gear chain: sennheiser mkh30/50 ms, in rycote cyclone small, windjammer > sound devices 302 >tascam dr-100 mk2. Low cut 140hz 6db/octave. Level around -33db for background. Decoded mid-side to stereo.
Författare: Klankbeeld
00:00
73:60
Please check out the new and improved version 2 now!. Https://freesound. Org/s/403326/. Simply log in and slam that download button. Free to download and distribute!. Created completely from end-to-end with open-source software. What i present to you is a high quality ipod ready cd-length track of extremely "soft"- toned noise. Helps with many sound pollution problems and audio-stimulus problems such as: sleep, concentration, tinnitus, headaches, and so much more!. The goal of this project was to bring the listener some aid in life and because of the success of this file i have released a softer version for listeners who prefer it:. Https://freesound. Org/s/403326/. Thank you all for the 1,000+ downloads!!!if this has helped you, please leave your story and feel free to share a link to this all over the web to help others in need.
Författare: Assett
00:00
00:26
With my new mic i decided to type away all my sorrows and problems, and this was the result (that was a joke, if you couldn't tell lol. ) but yeah, turned out to be quite aggressive so use if you want to portray some internet trolls or whatever floats your boat. Feel free to use whenever and however you want. Don't even need to credit me, but would love it if you did. :).
Författare: Nickisawsome
00:00
78:21
This is the sound of brownyan noise, made with audacity program. Stereo of this noise created with amplitude at the default value, also with fade in and out effects added for the good results. Using headphones is the best way to hear low frequencies of this noise. Also this sound can be use for tinnitus problems or masking unwanted noises. Also, it's very effective for relaxation, sleep or meditation. Enjoy it, and download this is recommended due to the bad quality preview.
Författare: Tealc
00:00
74:41
This is pink noise, made with audacity program. I decided to record this in a stereo track and i made this noise for 74 minutes long. The effects i chosen for this sound are fade in and fade out only, with the amplitude of pink noise sets to default settings. You can use this sound for your relaxation session, or if you have problems with tinnitus. For a best experience, you can use headphones. Enjoy it, it's my first sound i created.
Författare: Tealc
00:00
10:23
Ambient music is often very relaxing and beautiful. The sound i offer you here may not give me a singel star, but it doesn't matter, because i think it's one of the best i have ever done. I have tested the sound on some friends, and allof them said it ought to be used by anyone who is tired, upset, worried or have minor psycho problems. So here it is enjoy. I have yet another one under test, but will not give it to you until i'm 100% satisfied.
Författare: Vumseplutten
00:00
60:07
The new and improved ultra-soft noise v2 is here!. This has been optimized for itunes and other audio players. The file includes full tags and album art - 320kbps mp3. Simply log in and slam that download button. Free to download and distribute!. Created completely from end-to-end with open-source software. The audio has been updated to higher quality:3x the noise of the previous version, but with a slightly softer tone to increase effectiveness. Over 100 separate streams of noise was generated to create this. (v1 used 21 streams in 44khz/24-bit in a v0 mp3)the entire project was created, mixed, and mastered in 96khz/32-bit float. This file is limited to 1 hour because the use of a larger bit-rate and the amount of noise used. Helps with many sound pollution problems and audio-stimulus problems such as: sleep, concentration, tinnitus, headaches, and so much more!. If this has helped you, please share your story in the comments below and feel free to distribute this all over the web to help others!. I am leaving the original file https://freesound. Org/s/132275/ online for those who prefer it's tone and texture over this - v2 is a smoother and more relaxing texture.
Författare: Assett
00:00
00:42
This was produced by tapping on a stethoscope which had an earbud pressed against a shure sm57 mic. Low pass filter applied, as well as compression and a gate. Chorus added. Used a recording cassette deck as a preamp going into an m-audio audiophile usb soundcard. Note: if you're having problems listening to this clip, the cutoff frequency of your speaker set may be too high(solution: new speakers). The signal strength exists almost entirely in the very low frequencies, so you may need a sub-woofer to hear it. Otherwise, try turning your speaker volume all the way up. Doing so may saturate the signal and at least allow you to hear the harmonics of the signal caused by the distortion. I don't recommend it, but you'll at least maybe be able to hear something.
Författare: Greyseraphim
00:00
00:35
Be carefull with the volume!!! i maxed out the eq and volume to get the most effect possible. . . Dont know, but it could be bad for your ears!! dont want anyone to get hearing problems. . . . :). Dare 26 spin-off. . . . Alienxxx processed a few samples out of sample:. Http://www. Freesound. Org/people/luckylittleraven/sounds/223075/. He wanted us to listen to the samples an tell if they were worse or not to the original samples. . So i just listened to a few samples and noticed something weird. . . On a few samples there is this very high pitch sound. . . Seems not everyone is able to hear this. . My girlfriend was listening with me and she didnt hear anything like this!!!to find out what was going on alienxxx suggested to run the samples thrue an eq to see what was going on. I used the following sample:. Http://www. Freesound. Org/people/alienxxx/sounds/234027/. I found out that there was a very high peak at 14,8khz around 14sec. And again at 20sec. After that i maxed out my eq at 14,8khz. Setting everything to maximize the peak that is so very very very annoying!!!. .
Författare: Escortmarius
00:00
01:24
This is the soundscape i've recorded in my neighboorhood of cidade tiradentes, a district from são paulo, brazil. We name these events as pancadão (big punch) or fluxo (flow). When a flow occurs, you know that the sound is very high and it invades all surroundings. It happened in april 4, 2021, during our worst period in the the global covid-19 pandemic. Plent of people, vehicles, multiple speakers and so on in a street. I'm writing in the exact moment police came to repress, but in my conclusion only education can solve city problems, not repression, not paliative atitudes. I think this is interesting to share it here, as a cultural manifestation, showing that when the state fails, everyone fails. This is disrespectful at all, but i try to look it as a construction of city. In a country where its president goes for a for a swim at a crowded beach amid 200 thousand pandemic deaths, how can i criticize suburban people?. I'm not conservative, i like the kind of music playing known as"brazilian funk" or "funk carioca", this is our culture, even if i do not participate actively. Plot twist: i was working in a asmr video. *-*. Recorded in mp3 320 kbps, using a zoom h1n and compressed in ableton live to bring on the dynamics.
Författare: Kelvincristi
00:00
21:21
This is a failed attempt at sampling a rock drumkit on 6 tracks. The channels are as follows:. 0: oh l1: oh r2: kick3: snare4: room l5: room r. I've captured this into ardour 5. 12 using 3 different audio interfaces:. Behringer umc202hd - overheads (dynamic mics)line 6 pod studio ux2 - kick and snare (condenser + dynamic)zoom h2 - room ambience (built-in xy condenser mics). This file is a 6-channel 24-bit flac file encoded using ffmpeg from the raw wav files exported from the original ardour session. There are several issues with this recording however:. 1. The tracks seem to drift, because the individual audio interface clocks were not in sync. The proper way to record multitrack audio is using a single multichannel audio interface - but i didn't have one. 2. There's either x-runs or some usb transfer issues creating small glitches and dropouts in various tracks her and there. Don't know why did this happen, as we've been tracking the real drummer's performance without these issues. Now - fixing these issues manually would be an insane amount of work, but i hope maybe someone has means to either solve them with programming a special tool, or know a tool that could fix these, and make this recorded session ready to be sliced as a drumkit for say - drumgizmo. There's some really good stuff in here - an i was able to cut and mix some really nice drum samples, that i've been using for years, but it's not ready to be fully sliced for maximum flixibility. The instrument was played by myself - it's a drumset by pearl (don't remember the details), owned by the drummer of a band i recorded this with. The band was called small hint - hence the drumkit name. We were recording an ep, and i used some free time left to capture this as well. The ep was never finished and we disbanded soon after. Regarding fixing the issues - here's what i think needs to be done:. 1. I think each hit would have to be automatically phase-aligned on all 6 channels, to correct for the drift. 2. I think it should be possible to automatically detect clicks by simply watching for a sudden change in amplitude between adjacent samples - marking bad areas and then using something like audacity's repair effect to interpolate the waveforms. I think the glitches have much steeper changes in amplitude than even the drum transients, so it should be possible to differentiate between those automatically. If you found a way to fix at least some of these problems - please let me know!. If you've made some "remixes" on freesound - i'd also love to know that. Apart from that - sample what you can out of this and make some sick drum tracks!.
Författare: Unfa
201 - 215 av 215
/ 5