Skip to main content

A small python package for generating music.

Reason this release was yanked:

this version doesn't have silent notes

Project description

jc3000

A small python package for generating music. Inspired by this which was inspired by this (that's why it's called jc3000).

You can generate any notes you want based on any fundamental (the frequency of concert A in this case, fundamental as a term is used kind of loosely). You can also use either just or equal temperament.

More reading

This page has really good information on how music and scales work at the physical level.

Default sample rate is 44,100 Hz.
Default concert A is 440 Hz.

Installation

You can install it via pip. It requires numpy. Probably not compatible with python <= 3.6.

python3 -m pip install jc3000

Examples

  • Play the licc
from jc3000 import Sequence

s = Sequence(fs=44100, fundamental=440, equal=True)
s.add_note('d', duration=.125)
s.add_note('e', .125)
s.add_note('f', .125)
s.add_note('g', .125)
s.add_note('e', .257)  # .257 for ~swing-iness~
s.add_note('c', .125)
s.add_note('d', .25)

s.write_file('the_licc.wav')
  • Play the C major scale with concert A set to 432 Hz.
from jc3000 import Sequence

s = Sequence(fundamental=432)

notes = ['cdefgabc']

for i, note in enumerate(notes):
    if i < 5:
        s.add_note(note)
    else:
        s.add_note(note, octave=1)
        
s.write_file('cmajor_432hz.wav')

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

jc3000-0.0.5.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

jc3000-0.0.5-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file jc3000-0.0.5.tar.gz.

File metadata

  • Download URL: jc3000-0.0.5.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.6

File hashes

Hashes for jc3000-0.0.5.tar.gz
Algorithm Hash digest
SHA256 5206c2d8fab57b030cb34bb6930d64ae440648a19eaa4b9cd7dbd9b546251a13
MD5 4bd9f98ad654ce4f2da2e989a1e201e5
BLAKE2b-256 52b1cd2d083833c0609ce2c0e96687c2bf4d4b573f36a749462ab48c4963bb32

See more details on using hashes here.

File details

Details for the file jc3000-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: jc3000-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 5.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.6

File hashes

Hashes for jc3000-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 050acd3c6132d1c15a80c5184313be19945c982fc0faa1cb42704f9a25d96390
MD5 aaf3b378ab4bf3b802e284991d8893ce
BLAKE2b-256 0e65d3f44c113dcfed7e000cf65116d0936b7618a63fa18d7daf4207ed4f5baf

See more details on using hashes here.

Supported by

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