Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/comyar/TuningFork
:musical_keyboard: Simple Tuner for iOS
https://github.com/comyar/TuningFork
Last synced: 7 days ago
JSON representation
:musical_keyboard: Simple Tuner for iOS
- Host: GitHub
- URL: https://github.com/comyar/TuningFork
- Owner: comyar
- License: mit
- Created: 2015-10-17T07:04:02.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-10-02T13:33:28.000Z (about 6 years ago)
- Last Synced: 2024-04-30T23:12:28.238Z (8 months ago)
- Language: Swift
- Homepage:
- Size: 60.5 KB
- Stars: 419
- Watchers: 16
- Forks: 38
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - TuningFork - Simple Tuner for iOS. (Media / Audio)
- awesome-swift - TuningFork - A Simple Tuner for iOS. (Libs / Audio)
- awesome-ios-star - TuningFork - Simple Tuner for iOS. (Media / Audio)
README
![](header.png)
### Overview
[![Build Status](https://travis-ci.org/comyarzaheri/TuningFork.svg?branch=master)](https://travis-ci.org/comyar/TuningFork)
[![Version](http://img.shields.io/cocoapods/v/TuningFork.svg)](http://cocoapods.org/?q=TuningFork)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/comyar/TuningFork)
[![License](http://img.shields.io/cocoapods/l/TuningFork.svg)](https://github.com/comyar/TuningFork/blob/master/LICENSE)
[![git-brag-stats](https://labs.turbo.run/git-brag?user=comyar&repo=TuningFork)](https://github.com/comyar/TuningFork)TuningFork is a simple utility for processing microphone input and interpreting pitch, frequency, amplitude, etc.
TuningFork powers the [Partita](https://github.com/comyar/Partita) instrument tuner app.
# Usage
### Quick Start
##### CocoaPods
Add the following to your Podfile:
```ruby
pod 'TuningFork'
```
##### CarthageAdd the following to your Cartfile:
```ruby
github "comyarzaheri/TuningFork" "master"
```### Using a Tuner
```swift
import TuningForkclass 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
* [@comyar](https://github.com/comyar)