Popularity
5.0
Declining
Activity
0.0
Stable
419
16
38

Code Quality Rank: L5
Programming language: Swift
License: MIT License
Tags: Media     Audio    
Latest version: v0.2.0

TuningFork alternatives and similar libraries

Based on the "Audio" category.
Alternatively, view TuningFork alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of TuningFork or a related project?

Add another 'Audio' Library

README

[](header.png)

Overview

Build Status Version Carthage compatible License git-brag-stats

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.