Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am looking for an open source audio library similar to BASS from un4seen (http://www.un4seen.com/) to be used in Java applications. Could someone point me to a similar project?
If you don't mind using native libraries, OpenAL has at least these two Java wrappers:
JOAL
LWJGL
I have yet to try it myself, but it feels pretty solid as LWJGL, which many games are based on, has chosen to use it.
Try Beads: http://www.beadsproject.net. Available as jar, processing library or Eclipse project.
How about JSyn ? According to their website, they will release the source code soon.
Another alternative is FMJ. I actually think this is better than the JSyn which I specified above.
Check out jAudio as well.
JSyn, a modular audio synthesizer, was just released as open source on GitHub under the Apache License V2.
https://github.com/philburk/jsyn
As of 2015
FMJ and JAudio are pretty out of date.
JSyn and Beads are good to go.
of the two, JSyn is more popular in Google, but beads has a seemingly more active community.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I am attempting to get Java to communicate with a device that only supports Bluetooth 4.0
I've done some testing with BlueCove, but to the best of my knowledge, it does not support Bluetooth 4.0
Are there any libraries available to achieve this? I've searched high and low and came up with no straight forward solutions.
If there are none available, could someone recommend the best way I could make it work? In other questions similar to this one, some people have suggested doing a JNI wrapper for existing C/C++ libraries. If that is the best approach, what would be the best library to wrap?
I'd rather not have to resort to doing that, but if it's the only way I guess I will need to. I've been constrained to using Java and a device that only supports Bluetooth 4.0
EDIT: For anyone interested, my solution was to go with using Bluegiga's BGAPI. This limits me to only using their dongle (BLED112) BUT it is a workable solution. I went with this Java implementation of BGAPI. It has a dependency for an RXTX library, I decided to go with this one . Hope this helps someone.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
i was just wondering if anyone knew of a portable java IDE/Compiler? Something like an iPod but not so advanced, that let's you work with and compile java?
Just thought it would be a cool idea :P
This serves the purpose. We can compile the programs without requiring Java compiler on our machine.
There is an IDE for Android which supports this, see AIDE
Search for drJava. Is a pretty complex editor and includes a(n Eclipse) compiler.
Unfortunatelly, the project seems to be dead.
If you have an iOS device (iPhone, iPod touch or iPad) at hand, you can jailbreak it and install Java from Cydia. This gives you the compiler and the VM. However, it's old and limited to command line functionality.
You can use http://ideone.com/. This is a website for compiling and running java applications Here you can create an account and save all your example programs, which you can later refer from different location or even share it with others.
You can also practice other computer languages in it. It supports more than 40 programming languages.
Have you given any thought about using codenameone platform? http://www.codenameone.com/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm looking for a good libraries to edit .mp3 tags ID3v(22,23,24) (like author, title, track and this kind of stuff), write in java or clojure, any ideas ?
There is some standard "de facto" in this field...
I have just look at this question:
https://stackoverflow.com/questions/73147/i-need-an-id3-tag-reader-library-for-java-preferably-a-fast-one
But if there is something more would be great...
Perfect would be if the libraries supported not only .mp3 but also .ogg and .wma...
Thanks everybody, and sorry for my English...
You can use JAudiotagger library JAudiotagger
I built a Swing project last year that used JAudioTagger, and it worked great.
I only added support for mp3 to my app, but I believe it support more than that.
I know this is a bit late, but maybe it will help someone. I also wanted a library for this, so I wrote a library supporting all of the commonly used tag fields in mp3, ogg, flac, and mp4/m4a files. Source and documentation can be found here: https://github.com/DanPallas/green-tags and it is up on clojars.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I recently found this which is great as its the API but it doesn't seem to allow me to search
http://docs.oracle.com/javase/7/docs/api/
I am coming from a .NET background so need to be able to search the API.
I guess you are looking for something like this:KiwiDoc - A fresh way to browse and search javadoc
Auto-completion rocks!
For searching in the class/package names and within classes I can highly recommend the javadoc-search-frame. It's available for Google Chrome as an Extension and for all browsers that can run userscripts.
It provides a pretty useful quick-search functionality.
For a full-text search, I'd use Google as well.
Just use google
http://www.google.ee/search?q=RuntimeException+site%3Ahttp%3A%2F%2Fdownload.oracle.com%2Fjavase%2F6%2Fdocs%2Fapi
Use DMelt search
http://jwork.org/dmelt/search/
It searches words in the complete Java JDK 9, plus in 40,000 classes of external community Java packages
Just use CTRL+F in your browser.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am starting study java2me. But I have some source study about it like ebook, source sample code, and . Could anybody give some link website or source ebook study about it.
Great Tutorials/articles from sun:
Wireless Development Tutorial Part I
SUMMARY:This article contains
everything you need to know to get
started developing in the Java
Platform, Micro Edition (Java ME)
environment.
J2ME Tutorial
SUMMARY:What is J2ME? Cut away the
hype and the excess fat and you are
left with yet another (set of) Java
APIs. Since these APIs cannot run on a
traditional Java Virtual Machine
(JVM), due to the limited size of
mobile devices in regards to memory
and resource availability, J2ME
defines a limited version of the JVM
as well.
A book called J2ME Game Programming. This is the book I have enjoyed the most and recommend to everybody
I suggest having a look at LWUIT. http://lwuit.java.net/
I found good articles(with their documents) in samsung.Although this may not be for beginners.
My friends who happen to be J2ME developers always cite http://19-2.168.0.1 as a reference.
They also seem to like guiding everyone to the first results of google when being asked for a "J2ME TUTORIAL".
Fortunately, the first two google results are also the first stackoverflow result.
Also, try the J2ME site: http://java.sun.com/javame/index.jsp