https://github.com/comyar/TuningFork
:musical_keyboard: Simple Tuner for iOS
https://github.com/comyar/TuningFork
Last synced: 4 months 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-10-02T13:33:28.000Z (over 6 years ago)
- Last Synced: 2024-04-30T23:12:28.238Z (12 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

### Overview
[](https://travis-ci.org/comyar/TuningFork)
[](http://cocoapods.org/?q=TuningFork)
[](https://github.com/comyar/TuningFork)
[](https://github.com/comyar/TuningFork/blob/master/LICENSE)
[](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)