sound.properties 1.6 KB

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