I\'m looking for a way to find out the duration of a audio file (.wav) in python. So far i had a look at python wave library, mutagen, pymedi
wave
mutagen
pymedi
the librosa library can do this: librosa
import librosa librosa.get_duration(filename='my.wav')