暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

module.audio.midi.php 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552
  1. <?php
  2. /////////////////////////////////////////////////////////////////
  3. /// getID3() by James Heinrich <info@getid3.org> //
  4. // available at https://github.com/JamesHeinrich/getID3 //
  5. // or https://www.getid3.org //
  6. // or http://getid3.sourceforge.net //
  7. // see readme.txt for more details //
  8. /////////////////////////////////////////////////////////////////
  9. // //
  10. // module.audio.midi.php //
  11. // module for Midi Audio files //
  12. // dependencies: NONE //
  13. // ///
  14. /////////////////////////////////////////////////////////////////
  15. if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers
  16. exit;
  17. }
  18. define('GETID3_MIDI_MAGIC_MTHD', 'MThd'); // MIDI file header magic
  19. define('GETID3_MIDI_MAGIC_MTRK', 'MTrk'); // MIDI track header magic
  20. class getid3_midi extends getid3_handler
  21. {
  22. /**
  23. * @var bool
  24. */
  25. public $scanwholefile = true;
  26. /**
  27. * @return bool
  28. */
  29. public function Analyze() {
  30. $info = &$this->getid3->info;
  31. // shortcut
  32. $info['midi']['raw'] = array();
  33. $thisfile_midi = &$info['midi'];
  34. $thisfile_midi_raw = &$thisfile_midi['raw'];
  35. $info['fileformat'] = 'midi';
  36. $info['audio']['dataformat'] = 'midi';
  37. $this->fseek($info['avdataoffset']);
  38. $MIDIdata = $this->fread($this->getid3->fread_buffer_size());
  39. $offset = 0;
  40. $MIDIheaderID = substr($MIDIdata, $offset, 4); // 'MThd'
  41. if ($MIDIheaderID != GETID3_MIDI_MAGIC_MTHD) {
  42. $this->error('Expecting "'.getid3_lib::PrintHexBytes(GETID3_MIDI_MAGIC_MTHD).'" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexBytes($MIDIheaderID).'"');
  43. unset($info['fileformat']);
  44. return false;
  45. }
  46. $offset += 4;
  47. $thisfile_midi_raw['headersize'] = getid3_lib::BigEndian2Int(substr($MIDIdata, $offset, 4));
  48. $offset += 4;
  49. $thisfile_midi_raw['fileformat'] = getid3_lib::BigEndian2Int(substr($MIDIdata, $offset, 2));
  50. $offset += 2;
  51. $thisfile_midi_raw['tracks'] = getid3_lib::BigEndian2Int(substr($MIDIdata, $offset, 2));
  52. $offset += 2;
  53. $thisfile_midi_raw['ticksperqnote'] = getid3_lib::BigEndian2Int(substr($MIDIdata, $offset, 2));
  54. $offset += 2;
  55. for ($i = 0; $i < $thisfile_midi_raw['tracks']; $i++) {
  56. while ((strlen($MIDIdata) - $offset) < 8) {
  57. if ($buffer = $this->fread($this->getid3->fread_buffer_size())) {
  58. $MIDIdata .= $buffer;
  59. } else {
  60. $this->warning('only processed '.($i - 1).' of '.$thisfile_midi_raw['tracks'].' tracks');
  61. $this->error('Unabled to read more file data at '.$this->ftell().' (trying to seek to : '.$offset.'), was expecting at least 8 more bytes');
  62. return false;
  63. }
  64. }
  65. $trackID = substr($MIDIdata, $offset, 4);
  66. $offset += 4;
  67. if ($trackID == GETID3_MIDI_MAGIC_MTRK) {
  68. $tracksize = getid3_lib::BigEndian2Int(substr($MIDIdata, $offset, 4));
  69. $offset += 4;
  70. //$thisfile_midi['tracks'][$i]['size'] = $tracksize;
  71. $trackdataarray[$i] = substr($MIDIdata, $offset, $tracksize);
  72. $offset += $tracksize;
  73. } else {
  74. $this->error('Expecting "'.getid3_lib::PrintHexBytes(GETID3_MIDI_MAGIC_MTRK).'" at '.($offset - 4).', found "'.getid3_lib::PrintHexBytes($trackID).'" instead');
  75. return false;
  76. }
  77. }
  78. if (!isset($trackdataarray) || !is_array($trackdataarray)) {
  79. $this->error('Cannot find MIDI track information');
  80. unset($thisfile_midi);
  81. unset($info['fileformat']);
  82. return false;
  83. }
  84. if ($this->scanwholefile) { // this can take quite a long time, so have the option to bypass it if speed is very important
  85. $thisfile_midi['totalticks'] = 0;
  86. $info['playtime_seconds'] = 0;
  87. $CurrentMicroSecondsPerBeat = 500000; // 120 beats per minute; 60,000,000 microseconds per minute -> 500,000 microseconds per beat
  88. $CurrentBeatsPerMinute = 120; // 120 beats per minute; 60,000,000 microseconds per minute -> 500,000 microseconds per beat
  89. $MicroSecondsPerQuarterNoteAfter = array ();
  90. $MIDIevents = array();
  91. foreach ($trackdataarray as $tracknumber => $trackdata) {
  92. $eventsoffset = 0;
  93. $LastIssuedMIDIcommand = 0;
  94. $LastIssuedMIDIchannel = 0;
  95. $CumulativeDeltaTime = 0;
  96. $TicksAtCurrentBPM = 0;
  97. while ($eventsoffset < strlen($trackdata)) {
  98. $eventid = 0;
  99. if (isset($MIDIevents[$tracknumber]) && is_array($MIDIevents[$tracknumber])) {
  100. $eventid = count($MIDIevents[$tracknumber]);
  101. }
  102. $deltatime = 0;
  103. for ($i = 0; $i < 4; $i++) {
  104. $deltatimebyte = ord(substr($trackdata, $eventsoffset++, 1));
  105. $deltatime = ($deltatime << 7) + ($deltatimebyte & 0x7F);
  106. if ($deltatimebyte & 0x80) {
  107. // another byte follows
  108. } else {
  109. break;
  110. }
  111. }
  112. $CumulativeDeltaTime += $deltatime;
  113. $TicksAtCurrentBPM += $deltatime;
  114. $MIDIevents[$tracknumber][$eventid]['deltatime'] = $deltatime;
  115. $MIDI_event_channel = ord(substr($trackdata, $eventsoffset++, 1));
  116. if ($MIDI_event_channel & 0x80) {
  117. // OK, normal event - MIDI command has MSB set
  118. $LastIssuedMIDIcommand = $MIDI_event_channel >> 4;
  119. $LastIssuedMIDIchannel = $MIDI_event_channel & 0x0F;
  120. } else {
  121. // running event - assume last command
  122. $eventsoffset--;
  123. }
  124. $MIDIevents[$tracknumber][$eventid]['eventid'] = $LastIssuedMIDIcommand;
  125. $MIDIevents[$tracknumber][$eventid]['channel'] = $LastIssuedMIDIchannel;
  126. if ($MIDIevents[$tracknumber][$eventid]['eventid'] == 0x08) { // Note off (key is released)
  127. $notenumber = ord(substr($trackdata, $eventsoffset++, 1));
  128. $velocity = ord(substr($trackdata, $eventsoffset++, 1));
  129. } elseif ($MIDIevents[$tracknumber][$eventid]['eventid'] == 0x09) { // Note on (key is pressed)
  130. $notenumber = ord(substr($trackdata, $eventsoffset++, 1));
  131. $velocity = ord(substr($trackdata, $eventsoffset++, 1));
  132. } elseif ($MIDIevents[$tracknumber][$eventid]['eventid'] == 0x0A) { // Key after-touch
  133. $notenumber = ord(substr($trackdata, $eventsoffset++, 1));
  134. $velocity = ord(substr($trackdata, $eventsoffset++, 1));
  135. } elseif ($MIDIevents[$tracknumber][$eventid]['eventid'] == 0x0B) { // Control Change
  136. $controllernum = ord(substr($trackdata, $eventsoffset++, 1));
  137. $newvalue = ord(substr($trackdata, $eventsoffset++, 1));
  138. } elseif ($MIDIevents[$tracknumber][$eventid]['eventid'] == 0x0C) { // Program (patch) change
  139. $newprogramnum = ord(substr($trackdata, $eventsoffset++, 1));
  140. $thisfile_midi_raw['track'][$tracknumber]['instrumentid'] = $newprogramnum;
  141. if ($tracknumber == 10) {
  142. $thisfile_midi_raw['track'][$tracknumber]['instrument'] = $this->GeneralMIDIpercussionLookup($newprogramnum);
  143. } else {
  144. $thisfile_midi_raw['track'][$tracknumber]['instrument'] = $this->GeneralMIDIinstrumentLookup($newprogramnum);
  145. }
  146. } elseif ($MIDIevents[$tracknumber][$eventid]['eventid'] == 0x0D) { // Channel after-touch
  147. $channelnumber = ord(substr($trackdata, $eventsoffset++, 1));
  148. } elseif ($MIDIevents[$tracknumber][$eventid]['eventid'] == 0x0E) { // Pitch wheel change (2000H is normal or no change)
  149. $changeLSB = ord(substr($trackdata, $eventsoffset++, 1));
  150. $changeMSB = ord(substr($trackdata, $eventsoffset++, 1));
  151. $pitchwheelchange = (($changeMSB & 0x7F) << 7) & ($changeLSB & 0x7F);
  152. } elseif (($MIDIevents[$tracknumber][$eventid]['eventid'] == 0x0F) && ($MIDIevents[$tracknumber][$eventid]['channel'] == 0x0F)) {
  153. $METAeventCommand = ord(substr($trackdata, $eventsoffset++, 1));
  154. $METAeventLength = ord(substr($trackdata, $eventsoffset++, 1));
  155. $METAeventData = substr($trackdata, $eventsoffset, $METAeventLength);
  156. $eventsoffset += $METAeventLength;
  157. switch ($METAeventCommand) {
  158. case 0x00: // Set track sequence number
  159. $track_sequence_number = getid3_lib::BigEndian2Int(substr($METAeventData, 0, $METAeventLength));
  160. //$thisfile_midi_raw['events'][$tracknumber][$eventid]['seqno'] = $track_sequence_number;
  161. break;
  162. case 0x01: // Text: generic
  163. $text_generic = substr($METAeventData, 0, $METAeventLength);
  164. //$thisfile_midi_raw['events'][$tracknumber][$eventid]['text'] = $text_generic;
  165. $thisfile_midi['comments']['comment'][] = $text_generic;
  166. break;
  167. case 0x02: // Text: copyright
  168. $text_copyright = substr($METAeventData, 0, $METAeventLength);
  169. //$thisfile_midi_raw['events'][$tracknumber][$eventid]['copyright'] = $text_copyright;
  170. $thisfile_midi['comments']['copyright'][] = $text_copyright;
  171. break;
  172. case 0x03: // Text: track name
  173. $text_trackname = substr($METAeventData, 0, $METAeventLength);
  174. $thisfile_midi_raw['track'][$tracknumber]['name'] = $text_trackname;
  175. break;
  176. case 0x04: // Text: track instrument name
  177. $text_instrument = substr($METAeventData, 0, $METAeventLength);
  178. //$thisfile_midi_raw['events'][$tracknumber][$eventid]['instrument'] = $text_instrument;
  179. break;
  180. case 0x05: // Text: lyrics
  181. $text_lyrics = substr($METAeventData, 0, $METAeventLength);
  182. //$thisfile_midi_raw['events'][$tracknumber][$eventid]['lyrics'] = $text_lyrics;
  183. if (!isset($thisfile_midi['lyrics'])) {
  184. $thisfile_midi['lyrics'] = '';
  185. }
  186. $thisfile_midi['lyrics'] .= $text_lyrics."\n";
  187. break;
  188. case 0x06: // Text: marker
  189. $text_marker = substr($METAeventData, 0, $METAeventLength);
  190. //$thisfile_midi_raw['events'][$tracknumber][$eventid]['marker'] = $text_marker;
  191. break;
  192. case 0x07: // Text: cue point
  193. $text_cuepoint = substr($METAeventData, 0, $METAeventLength);
  194. //$thisfile_midi_raw['events'][$tracknumber][$eventid]['cuepoint'] = $text_cuepoint;
  195. break;
  196. case 0x2F: // End Of Track
  197. //$thisfile_midi_raw['events'][$tracknumber][$eventid]['EOT'] = $CumulativeDeltaTime;
  198. break;
  199. case 0x51: // Tempo: microseconds / quarter note
  200. $CurrentMicroSecondsPerBeat = getid3_lib::BigEndian2Int(substr($METAeventData, 0, $METAeventLength));
  201. if ($CurrentMicroSecondsPerBeat == 0) {
  202. $this->error('Corrupt MIDI file: CurrentMicroSecondsPerBeat == zero');
  203. return false;
  204. }
  205. $thisfile_midi_raw['events'][$tracknumber][$CumulativeDeltaTime]['us_qnote'] = $CurrentMicroSecondsPerBeat;
  206. $CurrentBeatsPerMinute = (1000000 / $CurrentMicroSecondsPerBeat) * 60;
  207. $MicroSecondsPerQuarterNoteAfter[$CumulativeDeltaTime] = $CurrentMicroSecondsPerBeat;
  208. $TicksAtCurrentBPM = 0;
  209. break;
  210. case 0x58: // Time signature
  211. $timesig_numerator = getid3_lib::BigEndian2Int($METAeventData[0]);
  212. $timesig_denominator = pow(2, getid3_lib::BigEndian2Int($METAeventData[1])); // $02 -> x/4, $03 -> x/8, etc
  213. $timesig_32inqnote = getid3_lib::BigEndian2Int($METAeventData[2]); // number of 32nd notes to the quarter note
  214. //$thisfile_midi_raw['events'][$tracknumber][$eventid]['timesig_32inqnote'] = $timesig_32inqnote;
  215. //$thisfile_midi_raw['events'][$tracknumber][$eventid]['timesig_numerator'] = $timesig_numerator;
  216. //$thisfile_midi_raw['events'][$tracknumber][$eventid]['timesig_denominator'] = $timesig_denominator;
  217. //$thisfile_midi_raw['events'][$tracknumber][$eventid]['timesig_text'] = $timesig_numerator.'/'.$timesig_denominator;
  218. $thisfile_midi['timesignature'][] = $timesig_numerator.'/'.$timesig_denominator;
  219. break;
  220. case 0x59: // Keysignature
  221. $keysig_sharpsflats = getid3_lib::BigEndian2Int($METAeventData[0]);
  222. if ($keysig_sharpsflats & 0x80) {
  223. // (-7 -> 7 flats, 0 ->key of C, 7 -> 7 sharps)
  224. $keysig_sharpsflats -= 256;
  225. }
  226. $keysig_majorminor = getid3_lib::BigEndian2Int($METAeventData[1]); // 0 -> major, 1 -> minor
  227. $keysigs = array(-7=>'Cb', -6=>'Gb', -5=>'Db', -4=>'Ab', -3=>'Eb', -2=>'Bb', -1=>'F', 0=>'C', 1=>'G', 2=>'D', 3=>'A', 4=>'E', 5=>'B', 6=>'F#', 7=>'C#');
  228. //$thisfile_midi_raw['events'][$tracknumber][$eventid]['keysig_sharps'] = (($keysig_sharpsflats > 0) ? abs($keysig_sharpsflats) : 0);
  229. //$thisfile_midi_raw['events'][$tracknumber][$eventid]['keysig_flats'] = (($keysig_sharpsflats < 0) ? abs($keysig_sharpsflats) : 0);
  230. //$thisfile_midi_raw['events'][$tracknumber][$eventid]['keysig_minor'] = (bool) $keysig_majorminor;
  231. //$thisfile_midi_raw['events'][$tracknumber][$eventid]['keysig_text'] = $keysigs[$keysig_sharpsflats].' '.($thisfile_midi_raw['events'][$tracknumber][$eventid]['keysig_minor'] ? 'minor' : 'major');
  232. // $keysigs[$keysig_sharpsflats] gets an int key (correct) - $keysigs["$keysig_sharpsflats"] gets a string key (incorrect)
  233. $thisfile_midi['keysignature'][] = $keysigs[$keysig_sharpsflats].' '.((bool) $keysig_majorminor ? 'minor' : 'major');
  234. break;
  235. case 0x7F: // Sequencer specific information
  236. $custom_data = substr($METAeventData, 0, $METAeventLength);
  237. break;
  238. default:
  239. $this->warning('Unhandled META Event Command: '.$METAeventCommand);
  240. break;
  241. }
  242. } else {
  243. $this->warning('Unhandled MIDI Event ID: '.$MIDIevents[$tracknumber][$eventid]['eventid'].' + Channel ID: '.$MIDIevents[$tracknumber][$eventid]['channel']);
  244. }
  245. }
  246. if (($tracknumber > 0) || (count($trackdataarray) == 1)) {
  247. $thisfile_midi['totalticks'] = max($thisfile_midi['totalticks'], $CumulativeDeltaTime);
  248. }
  249. }
  250. $previoustickoffset = null;
  251. $prevmicrosecondsperbeat = null;
  252. ksort($MicroSecondsPerQuarterNoteAfter);
  253. foreach ($MicroSecondsPerQuarterNoteAfter as $tickoffset => $microsecondsperbeat) {
  254. if (is_null($previoustickoffset)) {
  255. $prevmicrosecondsperbeat = $microsecondsperbeat;
  256. $previoustickoffset = $tickoffset;
  257. continue;
  258. }
  259. if ($thisfile_midi['totalticks'] > $tickoffset) {
  260. if ($thisfile_midi_raw['ticksperqnote'] == 0) {
  261. $this->error('Corrupt MIDI file: ticksperqnote == zero');
  262. return false;
  263. }
  264. $info['playtime_seconds'] += (($tickoffset - $previoustickoffset) / $thisfile_midi_raw['ticksperqnote']) * ($prevmicrosecondsperbeat / 1000000);
  265. $prevmicrosecondsperbeat = $microsecondsperbeat;
  266. $previoustickoffset = $tickoffset;
  267. }
  268. }
  269. if ($thisfile_midi['totalticks'] > $previoustickoffset) {
  270. if ($thisfile_midi_raw['ticksperqnote'] == 0) {
  271. $this->error('Corrupt MIDI file: ticksperqnote == zero');
  272. return false;
  273. }
  274. $info['playtime_seconds'] += (($thisfile_midi['totalticks'] - $previoustickoffset) / $thisfile_midi_raw['ticksperqnote']) * ($prevmicrosecondsperbeat / 1000000);
  275. }
  276. }
  277. if (!empty($info['playtime_seconds'])) {
  278. $info['bitrate'] = (($info['avdataend'] - $info['avdataoffset']) * 8) / $info['playtime_seconds'];
  279. }
  280. if (!empty($thisfile_midi['lyrics'])) {
  281. $thisfile_midi['comments']['lyrics'][] = $thisfile_midi['lyrics'];
  282. }
  283. return true;
  284. }
  285. /**
  286. * @param int $instrumentid
  287. *
  288. * @return string
  289. */
  290. public function GeneralMIDIinstrumentLookup($instrumentid) {
  291. $begin = __LINE__;
  292. /** This is not a comment!
  293. 0 Acoustic Grand
  294. 1 Bright Acoustic
  295. 2 Electric Grand
  296. 3 Honky-Tonk
  297. 4 Electric Piano 1
  298. 5 Electric Piano 2
  299. 6 Harpsichord
  300. 7 Clavier
  301. 8 Celesta
  302. 9 Glockenspiel
  303. 10 Music Box
  304. 11 Vibraphone
  305. 12 Marimba
  306. 13 Xylophone
  307. 14 Tubular Bells
  308. 15 Dulcimer
  309. 16 Drawbar Organ
  310. 17 Percussive Organ
  311. 18 Rock Organ
  312. 19 Church Organ
  313. 20 Reed Organ
  314. 21 Accordian
  315. 22 Harmonica
  316. 23 Tango Accordian
  317. 24 Acoustic Guitar (nylon)
  318. 25 Acoustic Guitar (steel)
  319. 26 Electric Guitar (jazz)
  320. 27 Electric Guitar (clean)
  321. 28 Electric Guitar (muted)
  322. 29 Overdriven Guitar
  323. 30 Distortion Guitar
  324. 31 Guitar Harmonics
  325. 32 Acoustic Bass
  326. 33 Electric Bass (finger)
  327. 34 Electric Bass (pick)
  328. 35 Fretless Bass
  329. 36 Slap Bass 1
  330. 37 Slap Bass 2
  331. 38 Synth Bass 1
  332. 39 Synth Bass 2
  333. 40 Violin
  334. 41 Viola
  335. 42 Cello
  336. 43 Contrabass
  337. 44 Tremolo Strings
  338. 45 Pizzicato Strings
  339. 46 Orchestral Strings
  340. 47 Timpani
  341. 48 String Ensemble 1
  342. 49 String Ensemble 2
  343. 50 SynthStrings 1
  344. 51 SynthStrings 2
  345. 52 Choir Aahs
  346. 53 Voice Oohs
  347. 54 Synth Voice
  348. 55 Orchestra Hit
  349. 56 Trumpet
  350. 57 Trombone
  351. 58 Tuba
  352. 59 Muted Trumpet
  353. 60 French Horn
  354. 61 Brass Section
  355. 62 SynthBrass 1
  356. 63 SynthBrass 2
  357. 64 Soprano Sax
  358. 65 Alto Sax
  359. 66 Tenor Sax
  360. 67 Baritone Sax
  361. 68 Oboe
  362. 69 English Horn
  363. 70 Bassoon
  364. 71 Clarinet
  365. 72 Piccolo
  366. 73 Flute
  367. 74 Recorder
  368. 75 Pan Flute
  369. 76 Blown Bottle
  370. 77 Shakuhachi
  371. 78 Whistle
  372. 79 Ocarina
  373. 80 Lead 1 (square)
  374. 81 Lead 2 (sawtooth)
  375. 82 Lead 3 (calliope)
  376. 83 Lead 4 (chiff)
  377. 84 Lead 5 (charang)
  378. 85 Lead 6 (voice)
  379. 86 Lead 7 (fifths)
  380. 87 Lead 8 (bass + lead)
  381. 88 Pad 1 (new age)
  382. 89 Pad 2 (warm)
  383. 90 Pad 3 (polysynth)
  384. 91 Pad 4 (choir)
  385. 92 Pad 5 (bowed)
  386. 93 Pad 6 (metallic)
  387. 94 Pad 7 (halo)
  388. 95 Pad 8 (sweep)
  389. 96 FX 1 (rain)
  390. 97 FX 2 (soundtrack)
  391. 98 FX 3 (crystal)
  392. 99 FX 4 (atmosphere)
  393. 100 FX 5 (brightness)
  394. 101 FX 6 (goblins)
  395. 102 FX 7 (echoes)
  396. 103 FX 8 (sci-fi)
  397. 104 Sitar
  398. 105 Banjo
  399. 106 Shamisen
  400. 107 Koto
  401. 108 Kalimba
  402. 109 Bagpipe
  403. 110 Fiddle
  404. 111 Shanai
  405. 112 Tinkle Bell
  406. 113 Agogo
  407. 114 Steel Drums
  408. 115 Woodblock
  409. 116 Taiko Drum
  410. 117 Melodic Tom
  411. 118 Synth Drum
  412. 119 Reverse Cymbal
  413. 120 Guitar Fret Noise
  414. 121 Breath Noise
  415. 122 Seashore
  416. 123 Bird Tweet
  417. 124 Telephone Ring
  418. 125 Helicopter
  419. 126 Applause
  420. 127 Gunshot
  421. */
  422. return getid3_lib::EmbeddedLookup($instrumentid, $begin, __LINE__, __FILE__, 'GeneralMIDIinstrument');
  423. }
  424. /**
  425. * @param int $instrumentid
  426. *
  427. * @return string
  428. */
  429. public function GeneralMIDIpercussionLookup($instrumentid) {
  430. $begin = __LINE__;
  431. /** This is not a comment!
  432. 35 Acoustic Bass Drum
  433. 36 Bass Drum 1
  434. 37 Side Stick
  435. 38 Acoustic Snare
  436. 39 Hand Clap
  437. 40 Electric Snare
  438. 41 Low Floor Tom
  439. 42 Closed Hi-Hat
  440. 43 High Floor Tom
  441. 44 Pedal Hi-Hat
  442. 45 Low Tom
  443. 46 Open Hi-Hat
  444. 47 Low-Mid Tom
  445. 48 Hi-Mid Tom
  446. 49 Crash Cymbal 1
  447. 50 High Tom
  448. 51 Ride Cymbal 1
  449. 52 Chinese Cymbal
  450. 53 Ride Bell
  451. 54 Tambourine
  452. 55 Splash Cymbal
  453. 56 Cowbell
  454. 57 Crash Cymbal 2
  455. 59 Ride Cymbal 2
  456. 60 Hi Bongo
  457. 61 Low Bongo
  458. 62 Mute Hi Conga
  459. 63 Open Hi Conga
  460. 64 Low Conga
  461. 65 High Timbale
  462. 66 Low Timbale
  463. 67 High Agogo
  464. 68 Low Agogo
  465. 69 Cabasa
  466. 70 Maracas
  467. 71 Short Whistle
  468. 72 Long Whistle
  469. 73 Short Guiro
  470. 74 Long Guiro
  471. 75 Claves
  472. 76 Hi Wood Block
  473. 77 Low Wood Block
  474. 78 Mute Cuica
  475. 79 Open Cuica
  476. 80 Mute Triangle
  477. 81 Open Triangle
  478. */
  479. return getid3_lib::EmbeddedLookup($instrumentid, $begin, __LINE__, __FILE__, 'GeneralMIDIpercussion');
  480. }
  481. }