Feeds:
Posts
Comments

Archive for the ‘Code’ Category

A 440

We will use the magic of unix to make a tuning fork

1 | 2 | 3 | 4 | 5 | Source Code

Things are a little slow at the shop these days – the aftermath of getting our big software development project done. With some time to spare, I’ve been reading The Audio Programming Book, edited by Richard Boulanger and Victor Lazzarini. As a substiture for note-taking as I work my way through this excellent text, I’ve to decided to blog about it.

The first task, from Chapter 1, around page 162, is to write a playable file for the sound of a tuning fork. The end result sounds like what you will hear if you click this link:

OUR FIRST SOUND

Wasn’t that nice? You did play it didn’t you? Here is how we did it – proceed only if you speak C and enjoy the power and elegance of Unix:

Step 1. Compile the program tfork.c using gcc tfork.c -o tfork. You will find it on the CD in chapters/01..., or here. Then execute this command:

./tfork tfork.txt 1.0 440.0 44100 0.2

The result is a 44,000 line text file, tfork.txt, whose first three lines are as follows:


0.00000000
0.06277625
0.12529051

It looks like this:

Tuning fork sound: A 440, exponential decay.

The file represents a sine wave at 440 Herz that decays exponentially to a small fraction of the starting amplitude after 1.0 seconds. The sample rate for the sound is 44100 Herz. The tfork command is used this way:

./tfork outfile duration frequency sample_rate decay_constant

Step 2. Compile the code in text2sf.c and install the binary somewhere in your search path. Execute the command

text2sf tfork.txt tfork.wav 44100 1 1.0

You now have a one-second CD-quality “recording” of a tuning fork! It is in the file tfork.wav You can play it using whatever means suits you and your computer best. On a mac, the command

play tfork.wav

works fine.

Isn’t it interesting that a sound can be represented so many different ways? As a list of numbers, that is, a text file. As an image. As the digital sound file that the computer can directly play. As vibrations in the air that tickle the hair cells in our inner ear. As a memory …

There must be some deep philosophical meaning in all this.

HH

PS. Related links: Barry Threw: Art and Technology

Read Full Post »

« Newer Posts