Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@chordbook/tuner

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chordbook/tuner

The tuner used by ChordBook.app

  • 0.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
91
increased by213.79%
Maintainers
1
Weekly downloads
 
Created
Source

@chordbook/tuner

A web-based library for pitch detection of stringed instruments. It uses the Web Audio API to capture audio from the microphone, and uses the pitchy to detect the predominant pitch.

🎸 View Demo 🪕

Features

  • ✅ Uses your devices microphone to detect the pitch of stringed instruments
  • ✅ Filters noise from low and high frequencies outside the range of stringed instruments
  • ✅ Does not try to detect when the volume is too low

Installation

npm install @chordbook/tuner

Usage

import { createTuner } from '@chordbook/tuner'

const tuner = createTuner({
  // The callback to call when a note is detected.
  onNote: note => {
    console.log('Note:', note)
  },

  // Here are some other settings you can fiddle with and their default values.
  // (let us know if you find values that work better).

  // The frequency of middle A. Defaults to 440Hz.
  a4: 440,

  // The minimum clarity threshold. Anything below this will be ignored
  clarityThreshold: 0.95,

  // The minimum volume threshold. -100 means 1/100th the volume of the loudest sound.
  minVolumeDecibels: -100,

  // The minimum and maximum frequencies to detect. To reduce noise, everything else is
  // filtered out using a lowpass and highpass filter.
  minFrequency: 73.42, // D2, drop D
  maxFrequency: 1084.0, // C6, highest note on the guitar in front of me

  // The size of buffer to use for frequency analysis, which maps to the `fftSize`:
  // https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/fftSize
  bufferSize: 2048,

  // https://developer.mozilla.org/en-US/docs/Web/API/AnalyserNode/smoothingTimeConstant
  smoothingTimeConstant: 0.9,
})

// Request access to the microphone and begin pitch detection
tuner.start()

// Stop listening
tuner.stop()

When a pitch is clearly detected, the onNote callback is called with an object containing the following properties:

{
  // The frequency of the detected note
  "frequency": 612.2498364209699,
  // The node name (e.g. "A", "C#")
  "name": "D♯",
  // The note number (0-89)
  "value": 75,
  // The number of cents the detected frequency is off from the nearest note
  "cents": -29,
  // The octave of the detected note
  "octave": 5,
  // The clarity of the detected note (0-1)
  "clarity": 0.9656978357299373
}

Contributing

Contributions are welcome!

  1. Clone this repository: git clone https://github.com/chordbook/tuner.git
  2. Install dependencies: npm install
  3. Start the development server: npm run dev
  4. Open http://localhost:5173/ in your browser

License

This project is licensed under the GPLv3.0 license.

Keywords

FAQs

Package last updated on 24 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc