A python package to analyze and visualize harmonic sounds
Project description
guitarsounds
A python package to analyse guitar sounds. Developed as a lutherie research analysis tool with the Bruand Lutherie School. The guitarsound python package documentation is available at documentation and a Jupyter Notebook tutorial for the API is available here.
Motivation
The main goal of this project is to provide a tool to efficiently analyse sound data from research projects in musical instrument design. While sound analysis packages already exist, they are more directed to feature extraction for machine learning purposes. Additionally, some features of interest, like time dependent decay, onset shape and fourier transform peaks distribution are not computable trivially or accurately with existing tools. The current release of the guitarsounds package contains usual and advanced digital signal processing tools applied to the analysis of transient harmonic sounds with easy figure generation through matplotlib
. To allow the package functionalities to be used rapidly without learning the API, a graphic user interface is available based on jupyter lab widgets.
Installation
The following steps can be followed to use guitarsound interactively with Jupyter Notebook. A French version of the installation guide is available here.
- Download the Anaconda package management system link.
-
Install the Anaconda package management system (Tutorial).
-
Once Anaconda is installed, the guitarsound package needs to be installed. Without going into heavy details, the guitarsound package is not available from the Anaconda channels and needs to be installed using PIP, the Package Installer for Python. To install a package from PIP in Anaconda, you need to use the Anaconda Prompt :
To install guitarsound, type the following command into the Anaconda Prompt :
pip install guitarsounds
Once the installation of guitarsounds is finished, the package can be used in the Anaconda Jupyter Notebook environment. The Jupyter Notebook environment can be launched from Anaconda Navigator which is included in the Anaconda package management system.
Then, navigate to the sub-directory where you want your work to be and create a Jupyter Notebook :
The graphic user interface can be launched by typing the following code in a cell of the notebook :
import guitarsounds
interface = guitarsounds.Interface()
Pressing shift+enter runs the code in the cell and launches the graphic user interface of guitarsounds :
To go further, you may learn the guitarsounds API, see the API Tutorial notebook and the API documentation
Example usage
While extracting quantitative features from sounds allows for a meaningful analysis, listening to them remains an important part of the analysis. Soundfiles can be loaded by creating a Sound
class instance with the soundfile path as an argument
from guitarsounds import Sound
mysound = Sound('example_sounds/Wood_Guitar/Wood_E1.wav')
The amplitude-time data of the Sound
instance is stored in a Signal
class and can be listened in a Jupyter Notebook:
mysound.signal.listen()
Relevant time signal properties can then be rapidly extracted and visualized in the interactive Jupyter Notebook environment. For example, the time damping curve and the associated damping factor is a useful measure when measuring the effects of changes in the guitar design on the decay rate of different notes :
mysound.plot.time_damping()
Two different sounds can also be compared using the SoundPack
class, such as a tangible effect of a design change can be measured. Here we compare the fourier transform peaks of two guitars built using different materials :
import guitarsounds
file1 = 'example_sounds/Wood_Guitar/Wood_A5.wav'
file2 = 'example_sounds/Carbon_Guitar/Carbon_A5.wav'
mysounds = guitarsounds.SoundPack(file1, file2, names=['wood', 'carbon'])
mysounds.compare_peaks()
The base API of the guitarsounds classes can also be leveraged to create custom signal analysis features. More info and advanced examples are available in the API Tutorial Notebook.
Community
Feel free to fork the guitarsound repository and submit pull requests implementing useful changes. If you implement a new feature, please submit associated unit tests in your pull request. Pull requests that pass all the tests and propose changes aligned with the goal of this package should be accepted.
This project is maintained by the Bruand Lutherie School, if you have problems with the package, or you need support in using it, please write an issue in this repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file guitarsounds-1.2.0.tar.gz
.
File metadata
- Download URL: guitarsounds-1.2.0.tar.gz
- Upload date:
- Size: 10.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.11.3 pkginfo/1.8.2 requests/2.28.1 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee26363876ba1473e19fbaf359f4cb3b6cb3dcefc6bdac945a8a1b8cb242c29b |
|
MD5 | f1501e7d3cfdc4746289d18d80f36870 |
|
BLAKE2b-256 | 8cb800c480959926dbefebc717e7a4efa44be628f41ef2f2b1cadbd0e55d9403 |