You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your current code is not capable of ingesting the covers80 dataset as published at http://labrosa.ee.columbia.edu/projects/coversongs/covers80/ because:
a) The covers80 files are .mp3 files, and your code is expecting .wav files, as detailed in your dataset.txt file. This leads to sox crashing with this message in the sox.log output file: "sox FAIL formats: can't open input file `data/covers80/wav_16k/en_vogue+Funky_Divas+09-Yesterday.wav': No such file or directory"
b) The covers80 files are presented in a different folder structure and name than your code expects: covers80 presents its mp3 files in subfolders organized by song title and all of those within a parent folder named "covers32k" whereas your code, as detailed in your dataset.txt file, expects them to be in a single folder named "wav_16k".