How to change pitch (samplerate) at run-time with portaudio ? Many thanks.
How to change pitch (sample rate) at run-time with portaudio?
1.9k Views Asked by user2418856 At
1
There are 1 best solutions below
Related Questions in RUNTIME
- Get height for RecyclerView child views at runtime
- Memory allocation of local variables within nested {}
- Runtime set property from a string
- Scala: binding time
- What is a runtime environment for supposedly "no-overhead" systems languages?
- iOS 7 runtime headers method invoke
- VBA Run-time error '13'
- Runtime.getRuntime().exec(__);
- how to start tomcat service as administrator
- Runtime Error Message Java
- How to change the delay of sleep/timer thread in android during runtime?
- How to prevent shutdown hook from getting deadlock?
- design application that can create instances of class while running
- Runtime.getRuntime.exec("color 0a") not working?
- Spring factory method
Related Questions in PORTAUDIO
- fftw of 16bit Audio :: peak appearing wrong at 2f
- PortAudio for MAC Mavericks
- fftw slight peak inaccuracy/drifting
- Callback for connected/unconnected device using portaudio?
- Compiling ASIO SDK in Qt
- zero latency microphone loopback, sidetone
- Port Audio and Libsndfile no data?
- Csound 6 fails to initialize PortAudio directly, but works via file somehow
- Low Pass filter in C
- Python PyAudio Portaudio invalid input device
- #if #endif preprocessing Directive, PortAudio
- Using Opus with PortAudio
- RtAudio or PortAudio, which one to use?
- How to read short (16bits) integers from an unsigned char (8bits) buffer
- PyAudio for 64-bit Linux machine
Related Questions in PITCH-SHIFTING
- Audio Pitch and Tempo modification
- How to modify pitch of sound file Java?
- playbackRate on AUDIO and pitch
- How to change pitch (sample rate) at run-time with portaudio?
- JS pitch shift with timbre control
- Frequency Shifting with FFT
- Integrate soundtouch library in Android Studio project
- How can I specify n_fft in Librosa pitch shifting effects
- Real time pitch shifting from scratch using python
- How to use AVAudioTimePitchAlgorithmSpectral?
- Midi music pitch shift not working for iOS in Swift
- Modify audio pitch / tempo while encoding with android MediaCodec
- Android: How to shift pitch of output sound (realtime)
- NAudio pitch shifting
- javascript pitch shift with time stretch
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Resampling is not a capability of PortAudio. Like the native audio i/o APIs that PortAudio wraps, PA streams run at a constant sample rate. To change the pitch (playback rate) of a sample you need perform on the fly sample rate conversion. You can do this by interpolating the original signal using a phase index that increments at some non-unity rate.
Depending on your requirements you can investigate either resampling/interpolation or pitch-time modification.
Commonly used low to medium quality high performance polynomial interpolation algorithms for audio are linear interpolation and cubic hermite interpolation. Higher quality interpolation can be performed with some variant of windowed sinc interpolation. A library you could use for sinc interpolation is Secret Rabbit Code.
For pitch/time transformation (a.k.a. pitch-shifting or time stretching) you might consider using the DIRAC library, which has an open source version for mono signals. There are other commercial libraries available e.g. from z-plane research.