Visualise audio with graphs.
There are two graph types available: 3d
and 2d
.
This plots the time, pitch and volume of the audio file.
import AudioVis
AudioVis.time_pitch_volume_3d("audio.wav")
This plots the time and pitch of the audio file.
import AudioVis
AudioVis.time_pitch_2d("audio.wav")
This plots the time and volume of the audio file.
import AudioVis
AudioVis.time_volume_2d("audio.wav")
This project is licenced under the GNU General Public Licence Version 3.0. See the LICENCE file for details.