Skip to content

Instantly share code, notes, and snippets.

@joshpetit
Created July 24, 2020 00:54
Show Gist options
  • Save joshpetit/a1f5e97825d0c2a03b9f84f36e3f7d2d to your computer and use it in GitHub Desktop.
Save joshpetit/a1f5e97825d0c2a03b9f84f36e3f7d2d to your computer and use it in GitHub Desktop.
A good audio format for Java audio
AudioFormat format = new AudioFormat(AudioFormat.Encoding.PCM_SIGNED,
44100,
16,
2,
4,
44100,
false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment