#preset #patch #synth #dx7

synthahol-dx7

Read presets for the Yamaha DX7 synthesizer

2 releases

0.1.1 Feb 26, 2024
0.1.0 Jun 14, 2023

#501 in Audio

Download history 127/week @ 2024-02-23 29/week @ 2024-03-01 10/week @ 2024-03-08 2/week @ 2024-03-15 21/week @ 2024-03-29 111/week @ 2024-04-05

138 downloads per month

MIT/Apache

36KB
872 lines

synthahol-dx7

Library to read presets for the Yamaha DX7 synthesizer

crates.io Docs Workflows

Overview

This is a library to read presets for the Yamaha DX7 hardware synthesizer.

Reading a Preset

use synthahol_dx7::Bank;

let bank = Bank::read_file("rom1a.syx").unwrap();

println!("This bank contains:");
for preset in bank {
    println!(preset.name);
}

Issues

If you have any problems with or questions about this project, please contact the developers by creating a GitHub issue.

Contributing

You are invited to contribute to new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.

The copyrights of contributions to this project are retained by their contributors. No copyright assignment is required to contribute to this project.

License

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Dependencies