Skip to content

umjammer/vavi-sound-lc3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Release Java CI CodeQL Java

vavi-sound-lc3

Fraunhofer LC3plus Codec for Java

© Fraunhofer IIS

Install

Usage

    AudioInputStream ais = AudioSystem.getAudioInputStream(Files.newInputStream(Paths.get(lc3)));
    Clip clip = AudioSystem.getClip();
    clip.open(AudioSystem.getAudioInputStream(new AudioFormat(44100, 16, 2, true, false), ais));
    clip.loop(Clip.LOOP_CONTINUOUSLY);

References

TODO

  • research difference between NativeLong and PointerByReference at method argument
    • this time NativeLong works well and PointerByReference does not
  • pure java version from google's