Skip to content

Commit

Permalink
Fixing bad math in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Zurad committed Apr 22, 2014
1 parent edad6b2 commit 804872f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -116,7 +116,7 @@ Calling waveform with the following options on a stereo file produces the follow
./waveform -i parachute.mp3 -h 800 -t 600 -w 1600 -b f3f3f3ff
![](test/examples/parachute.png)

Notice that since this was a stereo file and 600 * 2 > 800, the final image size is restricted to 800 pixels. However, if we make the same call supplying a mono mix of the same file, the output image has a height of 600, since 600 * 1 / 2 < 800.
Notice that since this was a stereo file and 600 * 2 > 800, the final image size is restricted to 800 pixels. However, if we make the same call supplying a mono mix of the same file, the output image has a height of 600, since 600 * 1 < 800.

./waveform -i parachute_mono.mp3 -h 800 -t 600 -w 1600 -b f3f3f3ff
![](test/examples/parachute_mono.png)
Expand Down

0 comments on commit 804872f

Please sign in to comment.