We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
I note that there is no concat.sh in the src folder, so how can I generate the input file?
Thank you.
The text was updated successfully, but these errors were encountered:
I used the following command:
find . -iname \*.wav -printf "%p " | xargs -d " " -I{} sox {} -t raw - > ../input.s16
or alternatively to shuffle the files:
find . -iname \*.wav | sort -R | tr "\n" " " | xargs -d " " -I{} sox {} -t raw - > ../input.s16
I am not sure it does exactly the same as the concat.sh command, but the models have trained fine.
Sorry, something went wrong.
@bpotard Thank you for your reply.
No branches or pull requests
Hi,
I note that there is no concat.sh in the src folder, so how can I generate the input file?
Thank you.
The text was updated successfully, but these errors were encountered: