Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pdudits/soundlibs
Maven artifacts for Java Sound Libraries
https://github.com/pdudits/soundlibs
Last synced: 3 months ago
JSON representation
Maven artifacts for Java Sound Libraries
- Host: GitHub
- URL: https://github.com/pdudits/soundlibs
- Owner: pdudits
- Created: 2015-03-13T07:42:14.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2023-07-01T10:03:32.000Z (over 1 year ago)
- Last Synced: 2024-08-01T03:13:49.600Z (5 months ago)
- Language: Java
- Homepage:
- Size: 1.51 MB
- Stars: 86
- Watchers: 9
- Forks: 24
- Open Issues: 10
-
Metadata Files:
- Readme: README.adoc
Awesome Lists containing this project
- stars - pdudits/soundlibs
README
Project aims to create and publish Maven artifacts for sound processing libraries that are not deployed to Maven Central Repository by their original authors.
Since these projects are stable for several years (let's not call them dead, shall we?), it is unlikely that they switch to Maven anytime soon.Following artifacts are released including source and javadoc artifacts:
* http://tritonus.org[Tritonus share] - utility classes for sound processing
* http://www.javazoom.net/javalayer/javalayer.html[JLayer] - MP3 decoder and encoder
* http://www.javazoom.net/mp3spi/mp3spi.html[MP3SPI] - javax.sound provider for MP3 decoding and encoding based on JLayer
* http://www.jcraft.com/jorbis/[JOrbis] - OGG Vorbis decoder and encoder
* http://www.javazoom.net/vorbisspi/vorbisspi.html[VorbisSPI] - Service provider for decoding OGG Vorbis
* http://www.javazoom.net/jlgui/api.html[BasicPlayer] - BasicPlayer layer is the simple player API of jlGui. These classes are designed to be used in any application that needs simple features (play, stop, pause, resume, seek) to play audio file or stream. It's a high-level API over JavaSound API.== How to use
Add any of these dependencies to your project:
[code,xml]
----com.googlecode.soundlibs
tritonus-share
0.3.7.4com.googlecode.soundlibs
tritonus-all
0.3.7.2com.googlecode.soundlibs
jlayer
1.0.1.4com.googlecode.soundlibs
mp3spi
1.9.5.3com.googlecode.soundlibs
jorbis
0.0.17.4com.googlecode.soundlibs
vorbisspi
1.0.3.3com.googlecode.soundlibs
basicplayer
3.0.0.0----
== Changes
=== soundlibs 1.4
* Released with https://github.com/danielflower/multi-module-maven-release-plugin[multimodule-release-plugin]
* Added BasicPlayer module
* mp3spi exports javazoom.spi packageDue to new release process all modules have are re-released with new version number. Packaging versions are no longer
separated with a dash, rather with a dot.=== soundlibs 1.3
* Added OSGi support
* Added tritonus-all with all non-native code of tritonus
* Support input configuration in javazoom player