Skip to main content

A python (Dual-Tone) Multi-Frequency (DTMF) tone generator.

Project description

Python 3 Blue Box DTMF Tone Generator

Modernized python bluebox DTMF tone generator / dialer.

BlueBox Phreaking

How it works

In essence, this is a simple utility that creates dual tone multi-frequency sine waves (50/50 mixed, but that can easily be adjusted). What does this mean? Well you know the sounds that you hear if you have the touchpad tones turned on when you dial a number in your phone? That's what this is. It's able to generate the tones that correspond to the number and output it to an audio device or a python list (for example).

This tool has a CLI interface which allows you to send a sequence of codes via stdin, pipes, files, as an argument, or in an interactive mode.

Why?

Well, initially this was a fun little python 3 project from 2015, but I thought it would be nice to make it modern and extensible, essentially showcasing it as a framework, but this doesn't have to be limited to DTMF / MF, in theory with ease you could turn this into something that reads in code sequences (str) and outputs waves. Also due to issue #3 https://github.com/zeyus/Python3BlueBox/issues/3 it was clear that there were some bugs, so what better way to deal with it than adding tests and a way to decouple things!

Installation

PyPI

pip install mfbluebox

Development

With uv (recommended):

git clone https://github.com/zeyus/Python3BlueBox.git
cd Python3BlueBox
uv sync --all-extras

With pip:

git clone https://github.com/zeyus/Python3BlueBox.git
cd Python3BlueBox
pip install -e ".[dev]"

Requirements

  • Python 3.9+ (tested on 3.9 - 3.14, CI on 3.11 - 3.14)
  • PortAudio (for audio playback)

Usage

CLI

With uv (in development):

uv run python -m bluebox -h

With pip/system Python:

python -m bluebox -h

Output:

usage: python3 -m bluebox [-h] [-l LENGTH] [-p PAUSE] [-a AMPLITUDE] [-s SAMPLE_RATE] [-m MF]
                          [-d] [-b BACKEND] [-o OUTPUT] [-r PAD_PAUSE_DURATION] [-f FILE]
                          [-P PIPE] [-S] [-i] [-v]
                          [sequence]

Generate tone sequences.

positional arguments:
  sequence              The sequence of tones to generate.

options:
  -h, --help            show this help message and exit
  -l, --length LENGTH   The length of each tone in milliseconds.
  -p, --pause PAUSE     The length of the pause between tones in milliseconds.
  -a, --amplitude AMPLITUDE
                        The combined amplitude of the waveforms.
  -s, --sample-rate SAMPLE_RATE
                        The sample rate of the waveforms.
  -m, --mf MF           The MF to use e.g. dtmf, mf.
  -d, --debug           Enable debug logging.
  -b, --backend BACKEND
                        The backend to use for playing the waveforms (pyaudio, wav, dummy).
  -o, --output OUTPUT   Output file path (required for wav backend).
  -r, --pad-pause-duration PAD_PAUSE_DURATION
                        The duration (ms) of the pause before/after sequence.
  -f, --file FILE       The file to read the sequence from.
  -P, --pipe PIPE       Read the sequence from a pipe.
  -S, --stdin           Read the sequence from stdin.
  -i, --interactive     Enter interactive mode.
  -v, --version         show program's version number and exit

Examples

Interactive mode:

uv run python -m bluebox -i
# or with system Python:
python -m bluebox -i

Play a sequence:

uv run python -m bluebox 123456789
# or with system Python:
python -m bluebox 123456789

Write a wav file:

uv run python -m bluebox -b wav -o sequence.wav 1234567890
# or with system python:
python -m bluebox -b wav -o sequence.wav 1234567890

API

You mainly need an BaseMF subclass instance and a Sequencer instance.

from bluebox import DTMF
from bluebox.box import Sequencer

mf = DTMF()
seq = Sequencer(mf = mf)

seq('12345')

Development

Development of different MF implementations and audio backends is extremely easy now. Just create a new class that inherits from the MF class, and register it. Same thing for audio backends.

Currently there are two MF implementations (DTMF and MF), and two audio backends (PyAudio and Dummy).

If you want to contribute, make a fork, and a branch. Please make any PR against develop.

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

mfbluebox-0.2.2.tar.gz (215.8 kB view details)

Uploaded Source

Built Distribution

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

mfbluebox-0.2.2-py3-none-any.whl (17.3 kB view details)

Uploaded Python 3

File details

Details for the file mfbluebox-0.2.2.tar.gz.

File metadata

  • Download URL: mfbluebox-0.2.2.tar.gz
  • Upload date:
  • Size: 215.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.4

File hashes

Hashes for mfbluebox-0.2.2.tar.gz
Algorithm Hash digest
SHA256 a776c21c9cadadd124bea9a2c4d470e4ff1373d95c23e7f874704f42cbfec2a6
MD5 b2428820b0c3d8545ab082539c0c5cf6
BLAKE2b-256 31d4fe400344a2405cce3f96e128cd58ba5c6c6906b73f857dfd7662c920c4a9

See more details on using hashes here.

File details

Details for the file mfbluebox-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: mfbluebox-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 17.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.4

File hashes

Hashes for mfbluebox-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 ad632bb0228808e82bcf50dfa6865dbec34ff9392994c941e4cda6583dbdbec4
MD5 87ba345a4a1385210cc84475af8a325a
BLAKE2b-256 42bf6a2a21ed08f8cc3d2e6bffd6370578297b3aaf4a3c84d76d156fd1f8e607

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