https://github.com/danp/metronome
A command-line metronome written in Go
https://github.com/danp/metronome
go metronome music
Last synced: over 1 year ago
JSON representation
A command-line metronome written in Go
- Host: GitHub
- URL: https://github.com/danp/metronome
- Owner: danp
- License: bsd-3-clause
- Created: 2024-08-20T14:33:17.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-20T14:34:33.000Z (almost 2 years ago)
- Last Synced: 2025-03-25T03:35:01.094Z (over 1 year ago)
- Topics: go, metronome, music
- Language: Go
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# metronome
It is a metronome.
There are tons of web/etc metronomes out there but for some reason it's very common to have a lower bound on bpm, like 40 or so.
One way I like to practice is with a click/beep every beat one which is hard for slower tempos with that lower bound.
`metronome -bpm 15` lets me do that for a 60 bpm tempo.
## Install
``` shell
go install github.com/danp/metronome@latest
```
This program uses [oto/v2](https://pkg.go.dev/github.com/hajimehoshi/oto/v2) which does not requrire cgo for macOS or Windows.
See docs for what's necessary on other platforms.