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 2 years ago.
Improve this question
I need a library to use to export some music info that I have in c++ to a midi file (needs to work in Android ndk).
I am afraid tse3 is to big for the Android platform and I would prefer a smaller library, but I do not know one. Is there a way for me to export a midi file from c++ through ndk Android?
Here's a lightweight Java MIDI library compatible with Android if you want. It's not NDK like you want, but you can pretty easily build a MIDI file from whatever data you have.
http://code.google.com/p/android-midi-lib/
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 5 years ago.
Improve this question
What I want to do is an iPhone app. But I want to program this in Java : is it possible?
Because, to program an iPhone app you have to program in Swift or Objective C, but can we do it in Java?...
There was a solution: RoboVM. Unfortunately it has been discontinued. But still available here: https://github.com/robovm/robovm
Also you may look at: Avian and Intel Multi-OS Engine
There is a solution https://www.codenameone.com/ which allows WORA for iOS and many other OS's including Windows UWP etc.
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 would like to know if there are any open source libraries to convert a set of images to video (not .MP4),other than ffmpeg. I need to use this library in my android app hence being compatible for this environment as well.
Any suggestions in this regard will be appreciated
You can try JCodec. It's an open source pure java implementation of video and audio codecs and formats.
Or Xuggler API can also be used but since you're looking for something other than ffmpeg, this might not be your cup of tea as Xuggler extensively incorporates FFMPEG in its functionality.
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 about to start working on some android development and was wondering after a lot of internet research that are:
Zbar and Zxing the only scanning tools out there that can be implemented into android apps is there no other way or getting a code scanner or any other methods of getting a scanner in ?
Also how do people find it adding Zbar and Zxing into android based projects,does it always work according to plan ?
Please let me know
Thanks
You can use the native Android detection API:
https://developers.google.com/vision/?hl=en
https://search-codelabs.appspot.com/codelabs/bar-codes#1
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 looking for a video editing library in Android.
Editing tasks:
Appending video to the end of another video.
Adding sound track to the video.
Adding text on top of the video.
Giving effects to the video (Heat, Sepia)
Video library can be in Java or native language(C, C++).
Please let me know if anybody has worked on this as i want to make one for Android smartphones.
http://www.xuggle.com looks promising but they have developed this for desktop and server environments and not for mobiles.
thanks in advance.
You have to use the source code to use video editing. Since it is not a mandatory feature, the editing classes and JNI libs will not be available in the SDK.
In ICS there are libvideoeditor, that used by standard MovieStudio. There are also JNI bindings for it.
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 Want to create a photo dictionary with .jar extension for mobile phones,what is the right tool or language for this purpose ?
I suspect that you would want to write a so called MIDlet using Java ME.
The proper tools include
The Java SDK
Eclipse together with a proper plugin such as EclipseME (or another compliant IDE)
The Sun Wireless Toolkit (WTK) which among other things contains an emulator)
A good step-by-step introduction to writing your first MIDlet can be found here:
http://www.autexier.de/jmau/dev/j2me/j2me.html