103 Royalty-Free Audio Tracks for "Mac Ii"

00:00
00:07
Created by Hyacinth (talk) 03:26, 24 December 2010 using Sibelius 5. vi-ii-V-I circle progression in Mozart's Sonata, K. 545.
Author: This file is lacking author information.
00:00
00:16
Turnaround in F. Created by Hyacinth (talk) 04:07, 12 June 2010 using Sibelius 5.
Author: The original uploader was Hyacinth at English Wikipedia.
00:00
00:12
Created by Hyacinth (talk) 21:44, 22 December 2010 using Sibelius 5. vi-ii-V-I in C.
Author: Hyacinth at English Wikipedia
00:00
03:01
Emperor waltz by Strauss (section)
Author: Unknown authorUnknown author
00:00
03:14
Tritsch-Tratsch-Polka: Transkription für Klavier Italiano: Johann Strauss Jr: «Tritsch-Tratsch-Polka». Trascrizione per pianoforte dell'utente Pracchia-78. Eseguito al sintetizzatore con un banco audio piano Steinway (28,4 MB), articolazione: Steinway Grand.
Author: Pracchia-78 / Johann Strauss Jr
00:00
02:59
Wiener Blut, a waltz by Johann Strauss II
Author: Unknown authorUnknown author
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
02:37
Das Akkordeonorchester Hof spielt die Tritsch-Tratsch Polka von Johann Strauss (Sohn) auf dem Jahreskonzert des Akkordeonorchesters Hof am 08.05.2010 in der Göstrahalle Köditz unter der Leitung von Torsten Petzold. Weitere Informationen: http://www.akkordeonorchester-hof.org
Author: Aufführung: Akkordeonorchester Hof (aohof) / Komponist: Johann Strauss Sohn
00:00
02:37
Das Akkordeonorchester Hof spielt die Tritsch-Tratsch Polka von Johann Strauss (Sohn) auf dem Jahreskonzert des Akkordeonorchesters Hof am 08.05.2010 in der Göstrahalle Köditz unter der Leitung von Torsten Petzold. Weitere Informationen: http://www.akkordeonorchester-hof.org
Author: Aufführung und Arrangement: Akkordeonorchester Hof (aohof) / Komponist: Johann Strauss Sohn / Bearbeitung (Videospur entfernt): Christoph Waghubinger (Lewenstein)
00:00
02:53
An Artist's Life waltz by Strauss
Author: Unknown authorUnknown author
00:00
01:41
Композитор Иоганн Штраус (сын). Вальс "Весенние голоса". Исп.: А.Грюнфельд (фортепиано) (ум. в 1924).
Author: Штраус, Иоганн (сын)
00:00
03:21
Roses from the South waltz by Strauss
Author: Unknown authorUnknown author
00:00
12:08
G'schichten aus dem Wienerwald, op. 325 Čeština: Valčík Povídky z Vídeňského lesa Johanna Strausse mladšího. Македонски: Приказни од Виенската Шума (1868) — валцер на Јохан Штраус. Opowieści Lasku Wiedeńskiego – walc autorstwa Johanna Straussa II
Author: Unknown authorUnknown author
00:00
00:35
Midi of the Bourre II of the II English Suite
Author: This file is lacking author information.
00:00
01:05
First zither solo in G'schichten aus dem Wienerwald, op. 325 (Johann Strauss II)
Author: Unknown authorUnknown author
00:00
01:18
Midi of the Bourre I of the II English Suite
Author: This file is lacking author information.
00:00
01:18
Midi of the Gigue of the II English Suite
Author: This file is lacking author information.
00:00
02:36
The Hamidiye Marşı (English: March of Hamid) was the imperial anthem of the Ottoman Empire from 1876 to 1909. In 1876, Sultan Abdul Hamid II had the Hamidiye March composed for him by Necip Paşa. This was also the first Ottoman Sultan's march that had lyrics.
Author: Necip Paşa
00:00
07:23
Johann Strauss II's overture to the opera The Gypsy Baron, played by the U.S. Marine Band for the album Overtures.
Author: Composition: Johann Strauss II Performance: United States Marine Band
00:00
00:16
Bach - Well-Tempered Clavier, Book I, Prelude I (C major, BWV 846), opening bars.
Author: Hyacinth
00:00
02:44
King Champagne from Die Fledermaus by Johann Strauss II performed by the Singing Sergeants and Concert Band of the United States Air Force Band. Track 16 from Wintertime (1999).
Author: Composition: Johann Strauss II; Arrangement: Robert Thurston; Performance: United States Air Force Band, Singing Sergeants and Concert Band; Recording: United States Air Force Band
00:00
04:56
Straus Waltz Medley performed by The US Air Force Strings
Author: Arr. MSgt (Ret.) Charles Granofsky
00:00
00:13
Chromatic fourth in Johann Sebastian Bach's Well-Tempered Clavier (the chromatic fourth is indicated by a red bracket). From Fugue No. 2 in D minor of the second book of Bach's Well-Tempered Clavier (BWV 875). Entered into Finale 2006, with red bracket added in Photoshop. The music this excerpt comes from is public domain. My selection and addition of bracket is GFDL.
Author: The original uploader was Hyacinth at English Wikipedia.
00:00
02:38
The "March of the Women Marines" composed by Louis Saverino of the United States Marine Band for the Marine Corps Women's Reserve, played by the U.S. Marine Band for the album Uncommon Valor.
Author: Composition: Musician First Class Louis Saverino, United States Marine Band Performance: United States Marine Band
00:00
08:59
An der schönen, blauen Donau (The Beautiful Blue Danube) , Op. 314.
Author: Untitled
00:00
09:10
An der schönen, blauen Donau (The Beautiful Blue Danube) , Op. 314 (arr. for wind ensemble)
Author: Untitled
00:00
08:60
An der schonen, blauen Donau (The Beautiful Blue Danube) , Op. 314.
Author: Untitled
00:00
08:42
President Roosevelt's Pearl Harbor Day message to joint session of Congress asking for a declaration of war with Japan. "The Star-Spangled Banner" is played on this recording after the speech. NARA claims the entire speech to be "Unrestricted"
Author: Recording: Bradley, John G. (John Grover), 1886-1974 (NARA record) Derivative work: Uploaded to Wikimedia Commons by W. Guy Finley.
00:00
00:59
Typing on a mac keyboard, recorded with a sound devices 744t.
Author: Kerrypeter
00:00
03:23
Interpret: Jenö Fescay Salon-Orchester Komponist: Johann Strauss (Sohn) Titel: Geschichten aus dem Wiener Wald Erstveröffentlichung: um 1927
Author: Carl Flisch
00:00
00:09
The sound of clicking keys on a computer keyboard.
Author: Caileykehoe
00:00
00:13
Close laptop.
Author: Cupido
00:00
00:24
Typing on a macbook.
Author: Thatmisfit
00:00
00:03
Keyboard typing.
Author: Eddies
00:00
00:01
A single click of an laptop key. Have fun.
Author: Sorinious Genious
00:00
00:44
This is that horrible noise that comes out of the mac headphone jack recorded and amplified.
Author: Kneedless
00:00
00:29
Typing to de mac, binaural recording.
Author: Piedo
00:00
01:50
Instant mac and cheese squished and stirred with a rubber spatula.
Author: Wmaresco
00:00
00:15
Magic mouse recording with zoom h6.
Author: Kintana
00:00
00:23
Shutting a macbook air (2016, 13"). Recorded with a samsung galaxy s8 using the "voice recorder" app from the play store. Use whenever, wherever, don't worry about credit!.
Author: Caesius
00:00
00:17
My girlfriend typing on her macbook air searching for youtube videos.
Author: Gogogonzoflow
1 - 50 of 103 Next page
/ 3