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

No concat.sh #2

Closed
changeforan opened this issue Oct 31, 2018 · 2 comments
Closed

No concat.sh #2

changeforan opened this issue Oct 31, 2018 · 2 comments

Comments

@changeforan
Copy link

Hi,

I note that there is no concat.sh in the src folder, so how can I generate the input file?

Thank you.

@bpotard
Copy link

bpotard commented Nov 15, 2018

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.

@changeforan
Copy link
Author

@bpotard Thank you for your reply.

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

2 participants