Skip to main content

Software to convert text into Morse code sound files.

Project description

Morse2sound

What can I do with this?

From some text, produce a sound file that contains that text, encoded in Morse code.

Background

What's this Morse code thing?

Fast message transport via telegraphy was one of the first practical uses of electricity, dating back to the middle of the 18th century.

Samuel F. B. Morse originally devised a scheme to transmit numbers via electric pulses, with a code book that allowed translation of words to those numbers and back. Later, his assistant Alfred L. Vail improved on this by coding single letters, so the code book became obsolete. He used short, long, longer, and extra long impulses. His original method is still remembered as American Morse Code, although it sees little use. This was again improved by Friedrich C. Gerke, who simplified from four different impulse lengths to just two. Gerke's code is virtually identical to what is nowadays known as International Morse Code. In 1865, an international treaty established the ITU as the first multinational standards organization, with the purpose of facilitating cross-border transport of messages. That same 1865 treaty also formalized Gerke's version of the Morse code. The coding of the letters a-z and the digits 0-9 have remained unchanged since then, but other things like punctuation indeed have seen some changes. The ITU still exists and to this day standardizes the international Morse code, among many other things.

Is anybody still using Morse telegraphy?

Morse telegraphy is still extensively used by certain sections of the HAM amateur radio community. For obscure historical/technical reasons, Morse telegraphy is generally designated as "CW".

CW is ubiquitous. On an everyday basis, any CW-capable short wave receiver (such as Twente Web-SDR available on the internet) is likely to pick up CW signals if tuned through the designated telegraphy ranges, e.g., 7000-7040 kHz. CW sees extensive use among DXers (radio amateurs trying to reach rare far-away places), in contests (radio amateur competitions), and by the "home-brew" community (radio amateurs constructing their own equipment). By its supporters, CW is considered an enjoyable mode of operation.

Usage

What does this software do?

It takes text and produces, as a sound file or stream, a Morse encoded version of that text.

The output format is that of .wav files.

Basic usage

morse2sound --in message.txt --wpm 12 --out message.wav

Character set

The international Morse code.

Remarks

Compression

The .wav files generated compress quite well, with the compression algorithm of your choice.

Installation

Make sure when you say python, then a version 3 Python comes up. E.g., python --version should give a 3.8 or better version.

I suggest you create and activate a venv. On Linux:

python3 -m venv venv
. venv/bin/activate

Install

pip install morse2sound

Contributing

Have git installed.

git clone https://gitlab.com/4ham/morse2sound.git

Change to the directory morse2sound that was created by the above.

Create and activate a virtual environment as per the documentation pertaining to your OS.

Then:

pip install -r requirements_test.frozen
./lint.py

Do your changes and repeat that python ./lint.py part in your branch before starting a pull request as usual towards the repository.

To run locally

PYTHONPATH=$(pwd)/src python src/cw_enc/driver.py -h

To build locally

In an activated virtual environment:

pip install --upgrade build
rm -rf dist build morse2sound.egg-info
python -m build

To install what you built:

pip install dist/morse2sound-*-py3-none-any.whl

To upload

This is useful only for the maintainer:

  • Edit the version in pyproject.toml
  • git tag -s vx.y.z
  • git push origin --tags
pip install --upgrade build twine
rm -rf dist build src/morse2sound.egg-info
python -m build
python -m twine upload dist/*

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

morse2sound-1.0.1.tar.gz (19.9 kB view hashes)

Uploaded Source

Built Distribution

morse2sound-1.0.1-py3-none-any.whl (15.6 kB view hashes)

Uploaded Python 3

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