example.c
上传用户:tjmskj2
上传日期:2020-08-17
资源大小:577k
文件大小:2k
源码类别:

midi

开发平台:

C/C++

  1. /*
  2.   An example of how to use FluidSynth.
  3.   To compile it on Linux:
  4.   $ gcc -o example example.c `pkg-config fluidsynth --libs`
  5.   To compile it on Windows:
  6.     ...    
  7.   Author: Peter Hanappe.
  8.   This code is in the public domain. Use it as you like.
  9. */
  10. #include <fluidsynth.h>
  11. #if defined(WIN32)
  12. #include <windows.h>
  13. #define sleep(_t) Sleep(_t * 1000)
  14. #else
  15. #include <stdlib.h>
  16. #endif
  17. int main(int argc, char** argv)
  18. {
  19.   fluid_settings_t* settings;
  20.   fluid_synth_t* synth;
  21.   fluid_audio_driver_t* adriver;
  22.   int sfont_id;
  23.   int i, key;
  24.   /* Create the settings. */
  25.   settings = new_fluid_settings();
  26.   /* Change the settings if necessary*/
  27.   /* Create the synthesizer. */
  28.   synth = new_fluid_synth(settings);
  29.   /* Create the audio driver. The synthesizer starts playing as soon
  30.      as the driver is created. */
  31.   adriver = new_fluid_audio_driver(settings, synth);
  32.   /* Load a SoundFont and reset presets (so that new instruments
  33.    * get used from the SoundFont) */
  34.   sfont_id = fluid_synth_sfload(synth, "example.sf2", 1);
  35.   /* Initialze the random number generator */
  36.   srand(getpid());
  37.   for (i = 0; i < 12; i++) {
  38.     /* Generate a random key */
  39.     key = 60 + (int) (12.0f * rand() / (float) RAND_MAX);
  40.     /* Play a note */
  41.     fluid_synth_noteon(synth, 0, key, 80);
  42.     /* Sleep for 1 second */
  43.     sleep(1);
  44.     /* Stop the note */
  45.     fluid_synth_noteoff(synth, 0, key);
  46.   }
  47.   /* Clean up */
  48.   delete_fluid_audio_driver(adriver);
  49.   delete_fluid_synth(synth);
  50.   delete_fluid_settings(settings);
  51.   return 0;
  52. }