TuningFork alternatives and similar libraries
Based on the "Audio" category.
Alternatively, view TuningFork alternatives based on common mentions on social networks and blogs.
-
AudioKit
Swift audio synthesis, processing, & analysis platform for iOS, macOS and tvOS -
SwiftySound
SwiftySound is a simple library that lets you play sounds with a single line of code. -
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 -
MusicKit
A framework for composing and transforming music in Swift -
SwiftAudioPlayer
Streaming and realtime audio manipulation with AVAudioEngine -
FDSoundActivatedRecorder
Start recording when the user speaks -
ModernAVPlayer
ModernAVPlayer is a persistence AVPlayer wrapper -
AudioPlayerSwift
AudioPlayer is a simple class for playing audio in iOS, macOS and tvOS apps. -
Soundable
Soundable allows you to play sounds, single and in sequence, in a very easy way
Appwrite - The Open Source Firebase alternative introduces iOS support
* 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.