Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

flac_to_wav.sh #7

Open
xjiae opened this issue Jul 25, 2019 · 5 comments
Open

flac_to_wav.sh #7

xjiae opened this issue Jul 25, 2019 · 5 comments

Comments

@xjiae
Copy link

xjiae commented Jul 25, 2019

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?

@Sophtee
Copy link

Sophtee commented Jan 27, 2020

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?

@alvinchow97
Copy link

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.

@TEJASK111
Copy link

Windows can't run shell script for this you have to enable window subsytem Linux and install ubuntu

@TEJASK111
Copy link

Window subsytem for linux

@manoj24vvr
Copy link

manoj24vvr commented Mar 27, 2024

@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!

Count the number of FLAC files

!find /path_to_LibriSpeech_folder/ -iname "*.flac" | wc

Convert FLAC files to WAV files using ffmpeg

!for flacfile in $(find path_to_LibriSpeech_folder -iname ".flac"); do ffmpeg -y -i "$flacfile" -ab 64k -ac 1 -ar 16000 "${flacfile%.}.wav"; done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants