Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kbinani/midi
SMF (Standard MIDI File) parser for Go
https://github.com/kbinani/midi
golang midi
Last synced: 8 days ago
JSON representation
SMF (Standard MIDI File) parser for Go
- Host: GitHub
- URL: https://github.com/kbinani/midi
- Owner: kbinani
- License: mit
- Created: 2017-01-25T11:58:32.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-27T11:36:46.000Z (almost 8 years ago)
- Last Synced: 2024-06-20T22:41:51.649Z (5 months ago)
- Topics: golang, midi
- Language: Go
- Size: 9.77 KB
- Stars: 3
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
midi
====[![Build Status](https://travis-ci.org/kbinani/midi.svg?branch=master)](https://travis-ci.org/kbinani/midi)
[![codecov.io](https://codecov.io/github/kbinani/midi/branch/master/graph/badge.svg)](https://codecov.io/github/kbinani/midi)
[![](https://img.shields.io/badge/godoc-reference-5272B4.svg)](https://godoc.org/github.com/kbinani/midi)
[![](https://img.shields.io/badge/license-MIT-428F7E.svg?style=flat)](https://github.com/kbinani/midi/blob/master/LICENSE)
[![Go Report Card](https://goreportcard.com/badge/github.com/kbinani/midi)](https://goreportcard.com/report/github.com/kbinani/midi)* Go library to parse Standard MIDI file.
todo
====
- [x] Extract tempo change table
- [ ] Extract time signature table
- [ ] Writing SMF fileexample
=======```go
package mainimport (
"fmt"
"os""github.com/kbinani/midi"
)func main() {
f, err := os.Open("test.mid")
if err != nil {
panic(err)
}
defer f.Close()file, err := midi.Read(f)
if err != nil {
panic(err)
}
for i, track := range file.Tracks {
fmt.Printf("track#%d: %5d events\n", i, len(track.Events))
}
}
```license
=======MIT License