how to implement more than 5 bands equalizer on android? - android

hello~ everybody!
I would like to implement equalizer on android. There is one issue that android is only providing 5 bands(the result of Equalizer.getNumberOfBands()) but I want more than 5.
Could you please let me know how to do this?
or does anybody know where I could get open source library for the equalizer?
Please help me~

https://code.google.com/p/sasken-player/
I used this to get the 10 band euqalizer. In the native jni code in equalizer class, there is ppf.c file where you can configure your various kind of filter requirements.
Other than that I can find anything else online yet.

Related

Code android for a KitchenTimer

is there someone who can help me to find a android code to create a kitchen >timer (I am a beginner)
As said in the comments, not sure why you didn't just search Google. However I'd advise using the inbuilt CountDownTimer class. Here is an example of how to set it all up:
http://www.theappguruz.com/blog/android-count-timer

Chromecast & Air for Android Apps (AS3)

Anyone one know a simple way to use / intergrate a chromecast sender for my Air for Android Apps so they can cast directly to a TV.
I've done a few successful tests on webpages.
but as for intergrating the code into an entirely AS3 project, I don't know were to begin? and I can't seem to find any docs on how to do this.
Thank you in advance for your help.
There in an Air Native Extension that handles this: ANE-Chromecast on Github
The ANE on Github is not a solution (line 19 of AirCast.as specifically excludes Android).
More fundamentally, even after re-engineering the ANE to get around the original block, it is currently not possible to get a reference to android.os.Bundle (which is required) as the class is not reachable, no matter how many SDK jars you build into the ANE.
Until there is a means to get the bundle, then this call will always fail:
CastDevice mSelectedDevice = CastDevice.getFromBundle(route.getExtras());
With:
java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/cast/CastDevice;
But if anybody can get around this, please let me know as I would dearly like to get there...

How to use this library in android for Video Recording

I am developing an Android App for recording video and sending to server. Also video must be recorded only on Touch of Record button. I have googled and got this library in the below link but I don't know how to use it in my project. This is the first time am going to use a library in a project. I have enable in my properties but don't know to use this functionality in my app. Please help me or suggest a tutorial.
https://github.com/sourab-sharma/TouchToRecord
I have just unchecked the Library option from Properties and used it as a package in my project. Its really a silly question. But the worked great

Use eigenface on Android (faint)

How could I use eigenface on my android application to do some facial recognition? I've found some project such as faint http://faint.sourceforge.net/#mozTocId837572
But have no idea how to use it in my own application.
Can anyone help me?
Thank you
This is a tutorial I used to learn about basic Faint face detection. However it did not work for me ad-hoc, I even ended up downloading the whole Faint source and changing it a bit so that I wouldn't get a NullPointerException. I found the code included in this project (I am not quite sure if it is legally included). The code should help you get acquainted with the basic functionalities.
However, when I got everything fixed I did not quite get the expected results: on a single passport pic I got up to 7 faces detected. Maybe it was just me misconfiguring the library... Many people seem to praise this library.
Hope my bit helps you get started with faint.

android RtpSocket stream

I am trying to implement Rtpsockets like in sipdroid.
http://code.google.com/p/sipdroid/source/browse/trunk/src/org/sipdroid/sipua/ui/VideoCamera.java
sipdroid is a huge project and I can't really find a good place to start.
Can anyone help me find a simpler project or give me some source code to start with?
Thank You,
Amitay Molko
I ended up editing this project https://github.com/spex66/RTSP-Camera-for-Android/
Fully implementing the rtsp client to work with remote servers.
You can find my code here http://www.4shared.com/rar/cm2e1ZML/RtspCamera.html

Categories

Resources