82 questions
0
votes
0
answers
59
views
Oboe implementation with Bluetooth SCO has conflicts with headset buttons
I have a Voice Call implementation that uses the Oboe library for low latency, and it works fine on the C++ layer. On the Java side, when I don't select Bluetooth SCO, everything functions well with ...
1
vote
0
answers
54
views
Reusing an instance of the Android Oboe resampler (MultiChannelResampler)
I am using Oboe library, and I use the resampler::MultiChannelResampler to simulate pitch shift with duration modification on small audio clips (piano). It works well when I instantiate a new ...
3
votes
0
answers
173
views
Multiple usb microphones/input in android?
I am using getSystemService(AUDIO_SERVICE) as AudioManager to get manager and then looking into microphones or getDevices(GET_DEVICES_INPUTS) to see what is available.
I have connected powered 4 port ...
0
votes
1
answer
817
views
By not providing "Findoboe.cmake" in CMAKE_MODULE_PATH
android/CMakeLists.txt : C/C++ debug|x86_64 : CMake Error at /root/UAC/nokia-team-comms/R2/ntc-ue-app/plugin/ntc-client/uac/android/CMakeLists.txt:6 (find_package):
By not providing "Findoboe....
0
votes
1
answer
340
views
Issue using Oboe library to generate sound in Android Studio
I'm trying to use the Oboe library to generate sound in my Android Studio project, but I'm having some issues.
I followed this documentation https://github.com/google/oboe/blob/main/docs/FullGuide.md
...
0
votes
0
answers
860
views
Can't build RustDesk - Android
I tried to build RustDesk project following documentation at documentation - android build
After executing:
VCPKG_ROOT=/opt/vcpkg ANDROID_NDK_HOME=/opt/android-ndk-r22b flutter/ndk_arm64.sh
I cp-ed ...
1
vote
1
answer
617
views
Problems attempting to build oboe c++ library using cmake on windows
I am attempting to build 'oboe' on a windows machine using cmake (version 3.25.0) and a visual studio generator. The end goal is to create a c++ audio library that uses oboe as the back end for ...
1
vote
0
answers
94
views
Android Oboe Library size
We are trying to integrate Oboe and the library size seems to be big.We dont need any processing like resampling ,format conversion .This we do in app and would like to know if its possible to ...
0
votes
1
answer
284
views
Android oboe glitch/noise/distortion
I'm trying to use oboe in my audio/video communication app, and I'm trying the onAudioReady round-trip callback as in the oboe guide: https://github.com/google/oboe/blob/main/docs/FullGuide.md
Now I'm ...
1
vote
1
answer
702
views
Processing a file with Oboe
I'd like to build something a little like the LiveEffect sample in the Google/Oboe library.
However, I want to affect the audio selected from a file chosen by the user rather than the microphone input....
5
votes
1
answer
720
views
How to read data from a stream using callback function. Oboe-Android
I'm currently working on a project where I need low-latency audio, so I decided to use Oboe (google library) to work with it.
I've read the documentation but multiple questions arise from it.
First, ...
1
vote
1
answer
175
views
In addition to setting setSampleRateConversionQuality What else will cause Oboe to modify the sample rate。
The note for function setSampleRateConversionQuality
/**
* Specify the quality of the sample rate converter in Oboe.
*
* If set to None then Oboe will not do sample rate conversion. But the ...
2
votes
1
answer
240
views
How to get Audio Data form Oboe at fixed time intervals
I am working on synchronizing audio streams from different audio devices Is there a way to get audio data burst on android after fixed time intervals. for example after every 40 ms
1
vote
1
answer
600
views
How to record audio while played back by oboe at the same time
I am using library that uses oboe to play audio and I would like to record it. Is it somehow possible ?
1
vote
1
answer
520
views
Oboe stops rendering audio if there is too many data to be rendered
I'm trying to implement Oboe library into my application, so I can perform low latency audio playing. I could perform panning, playback manipulation, sound scaling, etc. I've been asking few questions ...