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
Both the manpage and mix-to-mono itself say that the synopsis is sndfile-mix-to-mono <input file> <output file>
sndfile-mix-to-mono <input file> <output file>
Neither of them mention that the inout can be '-', meaning stdin, and the output can be '-', meaning stdout. All of the following work:
sndfile-mix-to-mono stereo.wav - > mono.wav sndfile-mix-to-mono - mono.wav < stereo.wav
Of course, the output file type cannot be determined from '-', but determining the file type from the name doesn't work anyway, see #93
Also, they cannot both be '-', because
sndfile-mix-to-mono - - < stereo.wav > mono.wav Error : input and output file names are the same.
even though the files are not the same of course: it's stdin and stdout.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Both the manpage and mix-to-mono itself say that the synopsis is
sndfile-mix-to-mono <input file> <output file>
Neither of them mention that the inout can be '-', meaning stdin,
and the output can be '-', meaning stdout. All of the following work:
Of course, the output file type cannot be determined from '-',
but determining the file type from the name doesn't work anyway,
see #93
Also, they cannot both be '-', because
even though the files are not the same of course: it's stdin and stdout.
The text was updated successfully, but these errors were encountered: