sound.properties 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # ===========================================================================
  2. # Licensed Materials - Property of IBM
  3. # "Restricted Materials of IBM"
  4. #
  5. # IBM SDK, Java(tm) Technology Edition, v7
  6. # (C) Copyright IBM Corp. 2014, 2014. All Rights Reserved
  7. #
  8. # US Government Users Restricted Rights - Use, duplication or disclosure
  9. # restricted by GSA ADP Schedule Contract with IBM Corp.
  10. # ===========================================================================
  11. ############################################################
  12. # Sound Configuration File
  13. ############################################################
  14. #
  15. # This properties file is used to specify default service
  16. # providers for javax.sound.midi.MidiSystem and
  17. # javax.sound.sampled.AudioSystem.
  18. #
  19. # The following keys are recognized by MidiSystem methods:
  20. #
  21. # javax.sound.midi.Receiver
  22. # javax.sound.midi.Sequencer
  23. # javax.sound.midi.Synthesizer
  24. # javax.sound.midi.Transmitter
  25. #
  26. # The following keys are recognized by AudioSystem methods:
  27. #
  28. # javax.sound.sampled.Clip
  29. # javax.sound.sampled.Port
  30. # javax.sound.sampled.SourceDataLine
  31. # javax.sound.sampled.TargetDataLine
  32. #
  33. # The values specify the full class name of the service
  34. # provider, or the device name.
  35. #
  36. # See the class descriptions for details.
  37. #
  38. # Example 1:
  39. # Use MyDeviceProvider as default for SourceDataLines:
  40. # javax.sound.sampled.SourceDataLine=com.xyz.MyDeviceProvider
  41. #
  42. # Example 2:
  43. # Specify the default Synthesizer by its name "InternalSynth".
  44. # javax.sound.midi.Synthesizer=#InternalSynth
  45. #
  46. # Example 3:
  47. # Specify the default Receiver by provider and name:
  48. # javax.sound.midi.Receiver=com.sun.media.sound.MidiProvider#SunMIDI1
  49. #