Skip to main content

A simple 8bit-style music library

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

8bit-music-lib (English)

This is a Python library for playing 8-bit style chiptune music.

日本語READMEはこちら

  • Compatible with Jupyter Notebook, so it can also run on Google Colaboratory.
  • Recommended for those who want to quickly try playing 8-bit music.
  • In the future, support for importing and exporting MML and MIDI files is planned.

Note
Waveforms are quantized to 8-bit resolution, but for compatibility with playback libraries,
the output format is 16-bit PCM array.


File Structure

8bit-music-lib
├── music8bit
│   ├── __init__.py
│   ├── core.py
│   ├── utils.py
│   └── wave.py
├── .gitignore
├── LICENSE
├── README.md
├── README_ja.md
└── setup.py

Installation

It is recommended to install with a playback library.

Recommended: via sounddevice (Windows/macOS/Linux)

pip install 8bit-music-lib[sounddevice]

Alternative: via simpleaudio (requires C++ build tools on Windows)

pip install 8bit-music-lib[simpleaudio]

Jupyter Notebook / Google Colaboratory

Useful for playing audio and displaying waveforms directly in the notebook.
On Colab, add ! at the beginning of the command:

pip install 8bit-music-lib[jupyter]

Minimal installation

pip install 8bit-music-lib

Only waveform generation is available; audio playback is not supported.


Importing

Simple import:

from music8bit import *

To avoid conflicts with other modules:

import music8bit as m8

Example (Simple Demo: Twinkle Twinkle Little Star)

import music8bit as m8

# Define notes
notes = [
    (['C5'],1), (['C5'],1), (['G5'],1), (['G5'],1),
    (['A5'],1), (['A5'],1), (['G5'],2),
    (['F5'],1), (['F5'],1), (['E5'],1), (['E5'],1),
    (['D5'],1), (['D5'],1), (['C5'],2)
]

# Define a part
part1 = m8.Part(
    melody=notes,
    volume=0.5,
    generator=m8.SquareWave(),
    first_bpm=120
)

# Create a song
song = m8.SongMixer([part1])

# Play
song.play()

Detailed usage, complex examples, and explanations of each class are summarized in the Wiki.


Afterword

This library was created out of the developer's personal desire to play music on Google Colab,
and turned into a library that anyone can use.

Honestly, the usability and completeness are limited.
For creating proper music, using MML or a DAW is much easier.
If you can run Pygame, convenient external libraries like Musicpy are also available in Python.

To those who still enjoy using this library, I hope you have a good 8-bit life.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

8bit_music_lib-0.2.0.tar.gz (9.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

8bit_music_lib-0.2.0-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

Details for the file 8bit_music_lib-0.2.0.tar.gz.

File metadata

  • Download URL: 8bit_music_lib-0.2.0.tar.gz
  • Upload date:
  • Size: 9.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for 8bit_music_lib-0.2.0.tar.gz
Algorithm Hash digest
SHA256 587aa0b97ca112e43fd32955ea82d47554b84fd287557b7e17fab99694e21e1c
MD5 69b3a5ee4a6f06f602569dd4b02dd33a
BLAKE2b-256 c3be2b17d86f872ead6314fc765fe7140d62310de74e795004e1ca78164d8273

See more details on using hashes here.

File details

Details for the file 8bit_music_lib-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: 8bit_music_lib-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 10.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for 8bit_music_lib-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b6b4ed0580030a652f15e409e08fabe3f45e2a12ff19ee0418026278b7dd39eb
MD5 7aae1ffae0a70514bd72ddaccd70691c
BLAKE2b-256 35d53ad20cf6206c0d0f484a70c3c6743c7de50f9282e77167a36371a34b3349

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page