1

I have come across the Superpowered SDK for processing audio in android. I am new to NDK and online there is little to no documentation about how to configure and use Superpowered, which is a shame for such a well made library.

Can someone explain me how to configure it properly?

All I did as of now is installing the NDK.

Daniele
  • 4,163
  • 7
  • 44
  • 95

2 Answers2

1

I recommend to start with one of the Android example projects of the Superpowered SDK. Set the 2 paths in local.properties and the project will build fine. Also read the README, which explains these steps and even more detail.

Gabor Szanto
  • 1,329
  • 8
  • 12
  • Thanks for the answer the fact is that I'm completely new to NDK and reading the Android example didn't result in any benefit since I wasn't able to understand it. Is there any example specifically for pitch shifting? – Daniele Jul 18 '17 at 08:21
1

I am using Qt5 to build c++ apps for Android, using Android NDK.

This may be a helpful for some, but to include the Superpowered libs, I did this in the Project.pro file, which works.

LIBS += -lOpenSLES

LIBS += C:\Qt\Your_Project\Superpowered\libSuperpoweredAndroidarmeabi-v7a.a

gumtown
  • 46
  • 2