505 Royalty-Free Audio Tracks for "Numbers"

00:00
12:01
Alchemical elements - sound experiences to compare. Hello sound-freaks,. In this pack i share some selected pieces of binaural beats referring to basic elements of ancient alchemy. If you listen, you should use headphone. I start with sulfur:. According to paracelsus (1493–1541), the three primes or tria prima – of which material substances are immediately composed – are:. Mercury (mind)salt (base matter or body)sulfur (spirit). (https://en. Wikipedia. Org/wiki/alchemical_symbol). Here some data for the sulfur binaural soundpieces i've worked with:symbol/atomic number in periodic table/nuclear magnetic resonance (nmr frequencies):s 16 7. 67 163,27 hz (176,01 hz: a series with this frequency may come later). You may listen to binaural variations of sulfur same nmr frequency 163,27 hz hz but different intervals:. Binaural creations of sulfur in these sounds on nmr 163,27 hzyou can read the distance to the core tone from the name of the soundfiles. For comparison with the basic or target tone, i added a sulfur stereo sound of 163. 27 hz as a audio test for you in this pack. Have a nice dayand fun with these compositions,the horst from germany. Some informations about sulfur as a homoeopathic remedy (if you are interested):. Https://www. Britishhomeopathic. Org/charity/how-we-can-help/articles/homeopathic-medicines/s/sulphur/http://homoeopathie-liste. De/mittel/sulfur. Htm.
Author: The Very Real Horst
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
01:05
My first upload! this sound i made using the zmors synth on my ipad air2 - i used audiobus which is a great routing software allowing many of a lot of awesome sounding synths that are now on ipad and can be played professionally via a usb keyboard controller (very handy for gigging) okay this is getting too wordy. . . I used audiobus overall with zmors in the first slot being routed through the wonderful aufx eq app in the center (effects) slot then ran the most useful of all ---> audioshare app in the 3rd or output slot to record it all. . . Keep in mind that the number of devices you can run in these three slots is virtually limitless - as much as your device can handle so you can get really nuts with several synths, a drum machine, etc all routing to the middle (fx) stop in the chain and picking up a fat 3 or 4 nice sounding effects devices then on to output to audioshare or you can now use just audioshare as host and run zmors in it directly (and probably more smoothly). I chose zmors because on a couple of other ipads (ipad mini, ipad 2 especially, and ipad air a little bit) i was noticing that it was a resource hog and was not playing correctly or there was a huge lag in the latency so with the new(er) ipad air 2 i wanted to hear the zmors synth and it really is an underappreciated majestic sounding beast if you ask me. I am going to experiment further with it as the unique architecture and just the way it sounds is totally different from any other synth i've yet to hear on ipad or in general. It kind of reminds me of a fatter, more modern. Sequential circuits 6 track. Which i've had a couple of and have a thick layered sound - kind of like a really nice turkey sandwich with a good portion of swiss cheese then you notice that there's still some roast beef left and put a good amount of that between bread as well. Hell, that's a sandwich that's gonna be filling! thanks for reading.
Author: Noeluciano
00:00
01:31
The Japanese anthem Kimi ga yo being performed in 1930. The source of the record is my personal collection. The record plate is number K1-A from Polyfar Recording. Català: Kimi Ga Yo (君が代), l'himne nacional japonès, tocat el 1930 per la Banda Militar de l'Acadèmia Militar Toyama. Čeština: Kimi ga jo (君が代), státní hymna Japonska, na nahrávce z roku 1930. (君が代), die Japanische Nationalhymne gespielt 1930 von der Militärkapelle der Toyama Armeeschule. Kimigayo (君が代), the Japanese National Anthem, as performed in 1930 by the Toyama Army School Military Band. Kimi ga yo (君が代, El reino de nuestro emperador), el himno nacional de Japón, ejecutado por la banda de la academia militar "Toyama" (1930) Suomi: Kimi ga yo (jap. 君が代), Japanin kansallislaulu, esitys vuodelta 1930. Kimi ga yo (君が代), l’hymne national du Japon, interprété par l’orchestre de l’école militaire Toyama. Italiano: Kimi ga yo (君が代, Il regno del nostro imperatore), l'inno nazionale del Giappone, nell'esecuzione della banda dell'accademia militare "Toyama" (1930) 日本語: 日本の国歌『君が代』。1930年、陸軍戸山学校軍楽隊の演奏。 Македонски: Химната на Јапонија насловена како „Кимигајо“ (君が代) во изведба на оркестарот на воена академија во Тојама (1930 г.) Кими га ё (君が代), японский национальный гимн, исполненный в 1930 году Toyama Army School Military Band. Tiếng Việt: Kimi Ga Yo (君が代), Quốc ca Nhật Bản, do Đội nhạc Quân đội của trường Quân bị Toyama trình diễn năm 1930.
Author: Toyama Army School Military Band
00:00
00:08
This sound was created using audacity. First of all i chose a frequency of 432 hz ( a number which includes the golden rule/proportion), then i created a gradual rise in the first 4 seconds, leading into a peak which descends so it can go up again, creating an effect of confusion. At the end, the sound raises gradually and rapidly to reach its peak once again. This sound recreates, for me, a fast- moving ufo (unidentified flying object) and includes the notion of conspiracy in our society- the changing of the frequency of the tone “la “ from 432 hz to 440 hz in 1953 by the nazis. La règle d’or- 432 hertz. Le ton « la » est une pointe centrale dans le réglage des instruments musicaux. Le ministre de la propagande en allemagne pendant l’époque des nazis a fait un décret général avec lequel il a changé la tonalité « la »de 432 hz en 440 hz. On utilise cette hauteur à partir de 1939 jusqu’à nos jours. Il y a eu des protestes de la part de professeur dussault de la conservatoire parisienne qui a fait une pétition signé par 23 000 artistes françaises mais sans aucun résultat. L’organisation internationale de standardisation(iso) a accepté en 1953 les changements et on utilise la valeur de 440 hz depuis. Des recherches montrent que ce changement a des effets incontournables sur le corps et le cerveau humain- les gens entrent dans un chaos. Ce changement a été caché du monde entier parce que c’est le point de la balance dans la nature. 432 hz est la vibration qui inclue aussi le règle d’or (ou la proportion de dieu). Quand on écoute de la musique en 440 hz la première chose qu’on remarque c’est une fatigue, aucun envie de faire n’importe quoi et beaucoup d’autres ( y inclus le mouvement de notre adn) une étude récent montre que l’utilisation de 440 hz crée des mouvais effets dans la nature et dans toutes les êtres vivantes. Cette article m’a inspirée à recréer un son avec une fréquence de 432 hz qui monte et baisse graduellement. C’est un son seul de type complexe(nodal). Il est de type v( continu varié), il est éclatant,clair et lisse. L’attaque du début est graduelle et violente. Le son varie en « hauteur » de plus fort au moins fort et l’inverse, recréant un effet d’un ovni qui passe à côté de vous.
Author: Univ Lyon
501 - 505 of 505
/ 11