Open xjiae opened 5 years ago
Hi, I am using a window 10 to run the flac_to_wav.sh, for some reason, it is not working and said that command is not recognized. Does anyone also have this issue?
Hi, do you found any solution to this
Hey, any solutions?
Hi, I am using a window 10 to run the flac_to_wav.sh, for some reason, it is not working and said that command is not recognized. Does anyone also have this issue?
Hi, do you found any solution to this
Hey, any solutions?
Do you follow exactly the step by step guidance by the article ? Especially the step that putting the main file into c, user and main directory under your own username, should be working fine. Because the flac converter meant to put in the directory.
Windows can't run shell script for this you have to enable window subsytem Linux and install ubuntu
Window subsytem for linux
@xjiae @Sophtee
I'm running the code in a jupyter notebook. So I used the following code and it worked fine for me. Check if its helpful!
!find /path_to_LibriSpeech_folder/ -iname "*.flac" | wc
!for flacfile in $(find path_to_LibriSpeech_folder -iname ".flac"); do ffmpeg -y -i "$flacfile" -ab 64k -ac 1 -ar 16000 "${flacfile%.}.wav"; done
Hi, I am using a window 10 to run the flac_to_wav.sh, for some reason, it is not working and said that command is not recognized. Does anyone also have this issue?