You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stops working when a minim dependeny is added to the pom: <dependency> <groupId>net.compartmental.code</groupId> <artifactId>minim</artifactId> <version>2.2.2</version> </dependency>
Is there a way to use javax.sound.midi and minim at the same time?
I already have midi support for the lights of my Christmas tree but would also like to integrate the very nice FFT and beat detection features of minim.
The text was updated successfully, but these errors were encountered:
A workarround (for when you don't need mp3 support) is using and exclusion in the dependency: <exclusion> <groupId>com.googlecode.soundlibs</groupId> <artifactId>mp3spi</artifactId> </exclusion>
I think the problem is that this dependency registers javazoom.spi.mpeg.sampled.file.MpegAudioFileReader as javax.sound.sampled.spi.AudioFileReader.
This AudioFileReader returns an MpegAudioFormat from it's getAudioFileFormat method
Playing a midi file using javax.sound.midi:
stops working when a minim dependeny is added to the pom:
<dependency> <groupId>net.compartmental.code</groupId> <artifactId>minim</artifactId> <version>2.2.2</version> </dependency>
Is there a way to use javax.sound.midi and minim at the same time?
I already have midi support for the lights of my Christmas tree but would also like to integrate the very nice FFT and beat detection features of minim.
The text was updated successfully, but these errors were encountered: