-
MDobleZ
Is it possible to read the individual samples obtain by a PD patch through a microphone in an Android app? I want to try a pitch-tracking algorithm.
-
MDobleZ
Thanks for all the replies. I'm gonna look into them.
-
MDobleZ
@FFW I want to incorporate the patch in a python code; like we do with Android.
-
-
-
MDobleZ
Thanks, @jaimeslo, the problem was I was using the camera microphone.
-
-
MDobleZ
I ended up copying and pasting from a previous app that was working fine. I cannot say I know what solved the problem, but at least it worked.
-
MDobleZ
I'm not sure about libpd, the app was apparently 32, but I followed the steps found online to make the change and they don't see to do anything.
-
MDobleZ
None. The app is compiled perfectly, it does everything it's supposed to do, but when I upload it to play store, I get this message and doesn't let me upload it.
-
MDobleZ
Probably, @seb-harmonik.ar, I'm not entire sure how to change that. I added
ndk {
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
and other variants I found of that I found online, I do see the libraries in the apk analyzer, but I still get the same message. -
MDobleZ
I'm getting this error message when uploading the app to google play store, do you think it's related to libpd?
-
-
MDobleZ
I'm sure there is something I'm doing wrong but this takes a whole second to refresh.
-
MDobleZ
Sorry, @bocanegra, I meant [bp~]. I'll try what you suggest. Thanks.
-
MDobleZ
No, @seb-harmonik.ar, I was using [tabwrite~] with the name of the array; but I assuming it will be the same thing. I know that with [pb~]s you can add a message and write the array index you want with no need for bangs (none triggered by the user at least), and I was wondering if that was somehow possible with the [rfft~] object.
-
MDobleZ
Is there another way to pass the numbers from [rfft~] to an array without using [tabwrite~]? I find [tabwrite~] makes the spectrum unstable (maybe something to do with the relationship between the number of bangs and the sampling frequency ... or maybe something else.)
-
MDobleZ
Solved! The problem was apparently you cannot connect [pd~] directly to a message; it has to go through an [env~] first. Thanks, @whale-av.
-
MDobleZ
I have 6 [bp~]s and I want each of one to be represented by a different column in the array going from low to high with the frequency.
-
MDobleZ
Is it possible to pass numbers from a [bp~] to an array using Pd-vanilla? I'm assuming it should be, but all the examples I find are for Pd-Extended and they don't work with vanilla.