8👍
✅
This one (uses audiolab, PIL and numpy) is decent: http://www.freesound.org/blog/?p=10
6👍
To make a graph or plot of the waveform, the usual Python appoach is to get the waveform into a numpy array, and then use matplotlib to make the plot.
The easiest way to read the data into a numpy array is to use scipy.io.wavfile.read
, though if you prefer not to use scipy (it’s a big package), it’s not difficult to read and convert the data using Python’s wav module.
- Override Django widgets default templates
- How to import and run a django function at the command line
- Django: foreign key value in a list display admin
- Can you find out if a Django Model instance is "dirty"?
- SynchronousOnlyOperation from celery task using gevent execution pool
3👍
Not trying to answer my own question here, but it’s a suggestion that may help others clearly when seeing this quesion…
After lots of searching around, I found this solution… It seems well done, but does anyone else know anything about it?
Seems to do the lot!
- Save Base64 String into Django ImageField
- Django rest framework cache policy
- Django is synchronous or asynchronous?
- Choosing Rails vs. Django based on performance and scalability
- Add method imports to shell_plus
Source:stackexchange.com