17,988 Royalty-Free Audio Tracks for "File"

00:00
03:01
Keep On Going (When You Get Where You're Going You Won't Be Missed At All) Written by Al Bernard and Paul Crane Performed by Daisy Martin with Tampa Blue Jazz Band Okeh 10" 8013, Side A Matrix Okeh S-70088-B Recorded in August 1921 David Giovannoni Collection
Author: Performer: Daisy Martin with Tampa Blue Jazz Band; Composer: Al Bernard and Paul Crane
00:00
02:08
Edison Gold Moulded Record #9295. Performed by Bob Roberts.
Author: Lyrics: Alfred Bryan. Music: James Kendis and Herman Paley.
00:00
01:42
1939 recording of Aleksander Läte's Kiigelaul. Elsa Maasik (voice) and Olav Roots (piano).
Author: Aleksander Läte, Elsa Maasik, Olav Roots
00:00
02:42
Elvis Presley performs "Blue Moon of Kentucky" Elvis Presley sing live "Blue Moon of Kentucky"
Author: Bill Monroe
00:00
00:55
Author: Untitled
00:00
01:17
Author: Untitled
00:00
00:06
Author: Untitled
00:00
01:48
Author: Untitled
00:00
00:58
Author: Untitled
00:00
01:18
Introit of Chrismas Eve, Gregorian ChantFrançais : Introit d'un chant grégorien soulignant le réveillon de Noël.
Author: Membeth
00:00
02:47
Amicus meus by Tomás Luis de Victoria
Author: Tomás Luis de Victoria
00:00
03:02
The traditional country song Cotton Eye Joe, performed by Gid Tanner and his Skillet Lickers
Author: Traditional
00:00
03:13
1939 recording of Aleksander Läte's Ärka üles, isamaa. Estonia muusikaosakonna segakoor.
Author: Aleksander Läte, Estonia muusikaosakonna segakoor
00:00
02:58
Sérénade de Méphistophélès de l'Opéra Faust de Charles Gounod, interprétée par Fédor Chaliapine
Author: Fédor Chaliapine (1873 - 1938)
00:00
02:06
Italiano: Anonimo: "Säkkijärven polkka". File audio ottenuto al sintetizzatore con il banco SoundFont Studio Works 2007 Light da 377 MB. Autoprodotto dall'utente.
Author: Pracchia-78 at Italian Wikipedia
00:00
03:11
John Philip Sousa's "The Rifle Regiment", performed by the U.S. Army Band
Author: Composition: John Philip Sousa Performance: U.S. Army Band
00:00
03:53
Author: Untitled
00:00
00:25
Ringtone
Author: Muralinitk
00:00
01:23
00:00
00:05
Author: Untitled
00:00
02:11
Composer: Dieterich Buxtehude Title: Was frag ich nach der Welt BuxWV: 104 Type of composition: Sacred Cantata
Author: Trisdee
00:00
00:09
Ascending and descending scale played in E major
Author: →ROUX ₪
00:00
00:14
Diminished seventh chord's use in modulation.
Author: Created by Hyacinth (talk) using Sibelius 5.
00:00
01:47
The traditional folk song Frankie and Johnny, performed by Gene Autry
Author: Traditional
00:00
00:30
Militärdrums aus dem ELP-Titel "Aquatarkus"
Author: Carl Palmer
00:00
04:23
MIDI file of 1901 Cuckoo Waltz by Australian composer Thomas Bulch
Author: Thomas Bulch
00:00
04:07
Recording of music written by Frederic Chopin
Author: Frederic Chopin
00:00
06:15
Recording of music written by Frederic Chopin
Author: Frederic Chopin
00:00
05:18
Recording of music written by Frederic Chopin
Author: Frederic Chopin
00:00
00:14
The song Good Morning to All composed in GarageBand.
Author: Eirik1231
00:00
02:52
Recording of music written by Frederic Chopin
Author: Frederic Chopin
00:00
02:36
Recording of music written by Frederic Chopin
Author: Frederic Chopin
00:00
01:30
The "National Anthem of the Republic of Austria" (German: Bundeshymne der Republik Österreich), performed instrumentally by the U.S. Navy Band circa May 2003.
Author: Untitled
00:00
03:21
This is a recording of Scott Joplin's "The Entertainer" rag, which was composed in 1902. This performance was created by Adam Cuerden, a Wikipedian, and found at http://adamcuerden.deviantart.com/gallery/. The MP3 file was then converted to OGG by Major Bloodnok and subsequently uploaded to the Wikimedia Commons. The recording, plus other source files (such as Midi) can be found at the URL http://adamcuerden.deviantart.com/#/d48wa4r.
Author: Untitled
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:17
State of Maine - Regional anthem of Maine
Author: Roger Vinton Snow
00:00
00:22
C major bebop scale.
Author: Created by Hyacinth (talk) 06:42, 29 March 2010 using Sibelius 5.
601 - 650 of 17,988 Next page
/ 360