- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2022 02:39 PM
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...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2022 04:07 PM
Try to prefix it with dbfs
dbfs:/FileStore
or
/dbfs/FileStore
My blog: https://databrickster.medium.com/