forked from andrewrk/PyWaveform
-
Notifications
You must be signed in to change notification settings - Fork 0
pyroscope/PyWaveform
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
waveform python module. Synopsis:
import waveform
# quickly draw the waveform of an mp3 file to a picture
waveform.draw("infile.mp3", "outfile.png", (800, 100), bgColor=(0,0,0,0),
fgColor=(0,0,128,255))
# draw using a gradient
center_color = (184, 221, 242, 255)
outer_color = (19, 117, 205, 255)
waveform.draw("infile.mp3", "outfile.png", (800, 100), bgColor=(0,0,0,0),
fgGradientCenter=center_color, fgGradientOuter=outer_color)
# generate the picture extremely quickly at the loss of how
# good the image looks
waveform.draw("infile.mp3", "outfile.png", (800, 100), cheat=True)
Supported audio formats:
libsndfile + libmad123, e.g.:
wav
aiff
au
ogg
flac
mp3
Supported graphic formats:
pretty much anything as far as I know. ImageMagick is pretty hefty.
About
Python library to create an image of a song's waveform
Topics
Resources
Stars
Watchers
Forks
Packages 0
No packages published
Languages
- C 87.5%
- Python 12.5%