https://github.com/comyar/TuningFork
:musical_keyboard: Simple Tuner for iOS
https://github.com/comyar/TuningFork
Last synced: 3 months ago
JSON representation
:musical_keyboard: Simple Tuner for iOS
- Host: GitHub
- URL: https://github.com/comyar/TuningFork
- Owner: comyar
- License: mit
- Archived: true
- Created: 2015-10-17T07:04:02.000Z (about 10 years ago)
- Default Branch: main
- Last Pushed: 2024-08-06T00:40:53.000Z (about 1 year ago)
- Last Synced: 2025-05-26T08:55:27.861Z (5 months ago)
- Language: Swift
- Homepage:
- Size: 62.5 KB
- Stars: 419
- Watchers: 15
- 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
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)