Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 1.26 KB

README.md

File metadata and controls

51 lines (35 loc) · 1.26 KB

fnote

Build Version: v0.1.0 License

CLI tool for converting musical notes, frequencies, and MIDI 🎵

Overview

fnote is a simple tool to convert frequencies, music notes, and MIDI note numbers to and from each other. It is easier to run this tool than to search for the information everytime.

Getting Started

Clone this repository:

git clone https://github.com/blackboxaudio/fnote && cd fnote/

Build and install the program:

cargo install --path .

Example usage:

fnote midi 60

# MIDI: 60
# Note: C4
# Frequency: 261.63 Hz

Using fnote

USAGE:
    fnote <command> <arg>
    
FLAGS:
    -h, --help      Prints help information
    -V, --version   Prints version information
    
ARGS:
    <command>       Command to execute, i.e. `midi`, `note`, or `freq`
    <arg>           Argument for command, e.g. frequency value (440) or music note (A4)