TuningFork alternatives and similar libraries
Based on the "Audio" category.
Alternatively, view TuningFork alternatives based on common mentions on social networks and blogs.
-
EZAudio
An iOS/OSX audio visualization framework built upon Core Audio useful for anyone doing real-time, low-latency audio processing and visualizations. -
SwiftySound
Super simple library that lets you play sounds with a single line of code (and much more). Written in Swift 3, supports iOS, macOS and tvOS. Cocoapods and Carthage compatible. -
AudioPlayer
AudioPlayer is syntax and feature sugar over AVPlayer. It plays your audio files (local & remote). -
IQAudioRecorderController
A drop-in universal library allows to record audio within the app with a nice User Interface. -
TheAmazingAudioEngine2
The Amazing Audio Engine is a sophisticated framework for iOS audio applications, built so you don't have to. -
FDSoundActivatedRecorder
Start recording when the user speaks. -
AudioPlayerSwift
AudioPlayer is a simple class for playing audio (basic and advanced usage) in iOS, OS X and tvOS apps -
ModernAVPlayer
Persistence player to resume playback after bad network connection even in background mode, manage headphone interactions, system interruptions, now playing informations and remote commands. -
SRGMediaPlayer-iOS
The SRG Media Player library for iOS provides a simple way to add a universal audio / video player to any iOS application.
Get performance insights in less than 4 minutes
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
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.