TuningFork alternatives and similar libraries
Based on the "Audio" category.
Alternatively, view TuningFork alternatives based on common mentions on social networks and blogs.
-
AudioPlayer
AudioPlayer is syntax and feature sugar over AVPlayer. It plays your audio files (local & remote). -
voice-overlay-ios
🗣 An overlay that gets your user’s voice permission and input as text in a customizable UI
CodeRabbit: AI Code Reviews for Developers
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of TuningFork or a related project?
README
[](header.png)
Overview
TuningFork is a simple utility for processing microphone input and interpreting pitch, frequency, amplitude, etc.
TuningFork powers the Partita instrument tuner app.
Usage
Quick Start
CocoaPods
Add the following to your Podfile:
pod 'TuningFork'
Carthage
Add the following to your Cartfile:
github "comyarzaheri/TuningFork" "master"
Using a Tuner
import TuningFork
class MyTunerDelegate: TunerDelegate {
func tunerDidUpdate(tuner: Tuner, output: TunerOutput) {
// Dreams come true here
print(output.pitch, output.octave)
}
}
let tuner = Tuner()
let delegate = MyTunerDelegate()
tuner.delegate = delegate
tuner.start()
License
TuningFork is available under the [MIT License](LICENSE).
Contributors
*Note that all licence references and agreements mentioned in the TuningFork README section above
are relevant to that project's source code only.