-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
28 lines (19 loc) · 921 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
MiniBPM Android Simple Sample
=============================
This is a very trivial example Android application that uses the
MiniBPM tempo estimator.
This project serves as an example of how to link to, and call to,
MiniBPM from Java code in an Android application.
It is *not* an example of how to write an Android application! The
Android-specific Java code here is absolutely not something that you
should refer to in your own work. This is simply an illustration of
the use of the JNI (Android NDK) interface.
In fact, the application has an empty user interface: all it does is
estimate the tempo of an audio file that is bundled into the app as a
resource, and send the results to the logger (use adb logcat to view).
To build:
$ ndk-build
$ ant debug
$ ant debug install
The example code is public domain; the MiniBPM licence is documented
separately (see http://www.breakfastquay.com/minibpm/).