You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

pyanoboard

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pyanoboard

Pyanoboard is a simple piano to keyboard emulator, allowing you to use any MIDI enabled device as a virtual keyboard.

1.1.0
pipPyPI
Maintainers
1

Pyanoboard

Pyanoboard is a simple piano to keyboard emulator, allowing you to use any MIDI enabled device as a virtual keyboard.

Pyanoboard actually simulates key events rather than sending characters to be typed, which means you can use it for anything such as gaming and not just typing.

Installation

Either

  • Clone this repository, and use pyanoboard.py from the pyanoboard directory
    • You must have pygame installed
  • Install the package via pip pip install pyanoboard

Prerequisites

  • MIDI enabled device such as a digital piano
  • MIDI to USB cable
  • python
  • Windows

Usage

To use this package, enter

python -m pyanoboard config

Where config is the path to your configuration file using the JSON format. An example configuration file has been included under example/config.json

example config

{
    "device_id": 1,
    "bindings": [
        {
            "note": "C3",
            "key": "h"
        }
    ]
}

pyanoboard can also take the following arguments

ArgumentMeaning
-verboseEnables verbose logging
-devicesShows a list of the connected MIDI devices instead of starting pyanoboard

In order to find the device_id of your device, use the -devices argument

python -m pyanoboard -devices

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts