I am trying to read scp file with kaldi_io in python:
mypath = r"/Users/Anas/Desktop/Parcours Centrale Lille/G3/Projet d'intégration/Toolbox/LibriSpeech_dev_clean_mfcc/raw_mfcc_dev_clean.1.scp"
for key,vec in kaldi_io.read_vec_flt_scp(mypath):
print("mfcc of id ",key,"is equal to ",vec)
I get this error:
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe9 in position 76: invalid continuation byte
I don't know how to solve this problem