Hi, I am developing notebook to read .wav files and build Speech Matching Scenario. I have saved files in "/FileStore/tables/doors_and_corners_kid_thats_where_they_get_you.wav".
When I wrote code like this
from scipy.io import wavfile
import numpy as np
import pandas as pd
from matplotlib import pyplot as plt
from scipy.spatial.distance import euclidean
from fastdtw import fastdtw
fs1, data1 = wavfile.read ("/FileStore/tables/doors_and_corners_kid_thats_where_they_get_you.wav")
I am getting error "No such file or directory: '/FileStore/tables/doors_and_corners_kid_thats_where_they_get_you.wav'"
Could you plz help...