Skip to main content
Glama
emicklei

melrōse musical expression player

by emicklei
undynamic.go460 B
package op import ( "fmt" "github.com/emicklei/melrose/core" ) type Undynamic struct { Target core.Sequenceable } func (u Undynamic) S() core.Sequence { n := []core.Note{} u.Target.S().NotesDo(func(each core.Note) { each.Velocity = core.Normal n = append(n, each) }) return core.BuildSequence(n) } func (u Undynamic) Storex() string { if s, ok := u.Target.(core.Storable); ok { return fmt.Sprintf("undynamic(%s)", s.Storex()) } return "" }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/emicklei/melrose'

If you have feedback or need assistance with the MCP directory API, please join our Discord server