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()

Note Input

To specify a single note:

(['note'], beats)
  • note: e.g., 'C5' (note name + octave)
  • beats: duration of the note (1, 2, etc.)

To play multiple notes simultaneously:

(['C5','E5','G5'], 1)  # C, E, G together for 1 beat

For rests:

(['R'],1)  # rest for 1 beat

To change BPM mid-song:

('BPM', 200)  # change BPM to 200

Defining a Part

Use the Part class to create a single melody part.
Multiple parts can be combined to form a full song.

part = m8.Part(
    melody=notes,              # list of notes
    volume=0.5,                # volume (0.0-1.0)
    generator=m8.SquareWave(), # waveform type (SquareWave, TriangleWave, NoiseWave, SineWave, etc.)
    first_bpm=120              # initial BPM
)
  • melody: list of notes
  • volume: 0.0 = silent, 1.0 = max (too high may cause clipping)
  • generator: waveform
  • first_bpm: initial tempo

Playback

Pass a list of Part instances to the SongMixer class to combine them into a full song waveform.

song = m8.SongMixer([part1, part2, part3])
  • synthesize(): returns waveform data
  • play(): plays audio (requires playback library)

Custom Waveform

To add your own waveform, subclass WaveGenerator and implement generate(freqs, t).
Example:

from musiclib.waves import WaveGenerator
import numpy as np

class MyWave(WaveGenerator):
    def generate(self, freqs, t):
        return np.sin(2*np.pi*freqs[:, None]*t[None, :])**3

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.1.0.tar.gz (10.0 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.1.0-py3-none-any.whl (10.8 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for 8bit_music_lib-0.1.0.tar.gz
Algorithm Hash digest
SHA256 21f61ea6b5852521ea9b04cf9955e7d710a757090c085fc398bad23f807319a6
MD5 876b6d2a304cb85981d057e98f384796
BLAKE2b-256 b213668076b7922d088a18d7b82000ef8fb4f789f26b78384b28c0a034ef6718

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for 8bit_music_lib-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 40430968f5a18a13f8a04a4eacd6868b3294479faf431d5312c980002ad2d113
MD5 db1a8942ed82b42b154e0be6ccadaf84
BLAKE2b-256 403ab0d2a04f5e2638fcd97c654e42a20373dc1ed15c25e5fbc7207a46cdda44

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