Skip to content

Instantly share code, notes, and snippets.

@ketanhdoshi
Last active February 14, 2021 01:52
Show Gist options
  • Save ketanhdoshi/ec824c988be4bad9b9ea0267856910ea to your computer and use it in GitHub Desktop.
Save ketanhdoshi/ec824c988be4bad9b9ea0267856910ea to your computer and use it in GitHub Desktop.
Load Audio file
import librosa
# Load the audio file
AUDIO_FILE = './audio.wav'
samples, sample_rate = librosa.load(AUDIO_FILE, sr=None)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment