Giter Site home page Giter Site logo

dx7-patches's Introduction

dx7-patches

JSON representation of a collection of Yamaha DX7 patches compiled by Glenn Scott

For the original readme: ftp://ftp.ucsd.edu/midi/patches/DX7/README.1ST

History

These files have been around for a while. They're currently hosted on a ucsd website. However, I retrieved them from Dave Benson's website. Ted Felix's dx7 utility then helped convert the sysex information into something I could read, which I then parsed with a file included in a different branch of this repository.

Organization

The original files came in banks of 32 patches each. Each top-level directory here represents one bank, containing the bank's 32 patches as json files.

Usage

npm install --save dx7-patches

var ePianoPatch = require('dx7-patches/rhodes1/epiano-1');
var FictionalDX7 = require('fictional-dx7');

var synth = new FictionalDX7();
synth.fictionalSetPathMethod(ePianoPatch);

midi.connect(synth); // fictional?

Walkthrough

There's a wealth of patches here. You can search the repo:

Format

I imagine the formatting, as well as the available patches, will change over time. Format changes will result in a version bump. But below is an example patch:

{
  "name": "E.PIANO 1 ",
  "algorithm": 5,
  "feedback": 6,
  "lfo": {
    "wave": "sine",
    "speed": 15,
    "delay": 33,
    "pitchModDepth": 0,
    "amDepth": "0",
    "sync": "off",
    "pitchModSensitivity": 2
  },
  "oscillatorKeySync": "Off",
  "pitchEG": {
    "rate1": 94,
    "rate2": 67,
    "rate3": 95,
    "rate4": 60,
    "level1": 50,
    "level2": 50,
    "level3": 50,
    "level4": 50
  },
  "transpose": "C3",
  "operators": [
    {
      "amSensitivity": 0,
      "oscillatorMode": "ratio",
      "frequency": 1,
      "detune": 3,
      "eg": {
        "rate1": 96,
        "rate2": 25,
        "rate3": 25,
        "rate4": 67,
        "level1": 99,
        "level2": 75,
        "level3": 0,
        "level4": 0
      },
      "keyboardLevelScaling": {
        "breakpoint": "A-1",
        "leftCurve": "-LIN",
        "rightCurve": "-LIN",
        "leftDepth": 0,
        "rightDepth": 0
      },
      "keyboardRateScaling": 3,
      "outputLevel": 99,
      "keyVelocitySensitivity": 2
    },
    {
      "amSensitivity": 0,
      "oscillatorMode": "ratio",
      "frequency": 14,
      "detune": 0,
      "eg": {
        "rate1": 95,
        "rate2": 50,
        "rate3": 35,
        "rate4": 78,
        "level1": 99,
        "level2": 75,
        "level3": 0,
        "level4": 0
      },
      "keyboardLevelScaling": {
        "breakpoint": "A-1",
        "leftCurve": "-LIN",
        "rightCurve": "-LIN",
        "leftDepth": 0,
        "rightDepth": 0
      },
      "keyboardRateScaling": 3,
      "outputLevel": 58,
      "keyVelocitySensitivity": 7
    },
    {
      "amSensitivity": 0,
      "oscillatorMode": "ratio",
      "frequency": 1,
      "detune": 0,
      "eg": {
        "rate1": 95,
        "rate2": 20,
        "rate3": 20,
        "rate4": 50,
        "level1": 99,
        "level2": 95,
        "level3": 0,
        "level4": 0
      },
      "keyboardLevelScaling": {
        "breakpoint": "A-1",
        "leftCurve": "-LIN",
        "rightCurve": "-LIN",
        "leftDepth": 0,
        "rightDepth": 0
      },
      "keyboardRateScaling": 3,
      "outputLevel": 99,
      "keyVelocitySensitivity": 2
    },
    {
      "amSensitivity": 0,
      "oscillatorMode": "ratio",
      "frequency": 1,
      "detune": 0,
      "eg": {
        "rate1": 95,
        "rate2": 29,
        "rate3": 20,
        "rate4": 50,
        "level1": 99,
        "level2": 95,
        "level3": 0,
        "level4": 0
      },
      "keyboardLevelScaling": {
        "breakpoint": "A-1",
        "leftCurve": "-LIN",
        "rightCurve": "-LIN",
        "leftDepth": 0,
        "rightDepth": 0
      },
      "keyboardRateScaling": 3,
      "outputLevel": 89,
      "keyVelocitySensitivity": 6
    },
    {
      "amSensitivity": 0,
      "oscillatorMode": "ratio",
      "frequency": 1,
      "detune": -7,
      "eg": {
        "rate1": 95,
        "rate2": 20,
        "rate3": 20,
        "rate4": 50,
        "level1": 99,
        "level2": 95,
        "level3": 0,
        "level4": 0
      },
      "keyboardLevelScaling": {
        "breakpoint": "A-1",
        "leftCurve": "-LIN",
        "rightCurve": "-LIN",
        "leftDepth": 0,
        "rightDepth": 0
      },
      "keyboardRateScaling": 3,
      "outputLevel": 99,
      "keyVelocitySensitivity": 0
    },
    {
      "amSensitivity": 0,
      "oscillatorMode": "ratio",
      "frequency": 1,
      "detune": 7,
      "eg": {
        "rate1": 95,
        "rate2": 29,
        "rate3": 20,
        "rate4": 50,
        "level1": 99,
        "level2": 95,
        "level3": 0,
        "level4": 0
      },
      "keyboardLevelScaling": {
        "breakpoint": "D3",
        "leftCurve": "-LIN",
        "rightCurve": "-LIN",
        "leftDepth": 0,
        "rightDepth": 19
      },
      "keyboardRateScaling": 3,
      "outputLevel": 79,
      "keyVelocitySensitivity": 6
    }
  ]
}

dx7-patches's People

Contributors

itsjoesullivan avatar

Stargazers

 avatar  avatar Vincent Cusson avatar Roman Silin avatar Lame Impala avatar charlie roberts avatar Masami Komuro avatar danigb avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.