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
I finally might have found a command in Ubuntu that will play raw audio...
The aplay utility seems to be installed by default (need to check college install). The command:
aplay
aplay --channels=2 --rate=44100 --format=S16_LE
should play whatever raw data it is passed on stdin. So you can create an audio_sink.sh as:
audio_sink.sh
#!/bin/bash aplay --channels=2 --rate=44100 --format=S16_LE
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I finally might have found a command in Ubuntu that will play raw audio...
The
aplay
utility seems to be installed by default (need to check college install). Thecommand:
should play whatever raw data it is passed on stdin. So you can create an
audio_sink.sh
as:The text was updated successfully, but these errors were encountered: