Created
August 20, 2015 14:09
-
-
Save information-security/025cb07c3d163dc11ad5 to your computer and use it in GitHub Desktop.
Yate's slin format and Asterisk's sln format can be converted to wav files using this cmd. Usage: convert_slin2wav.sh in.slin out.wav
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Usage: convert_slin2wav.sh in.slin out.wav | |
| sox -t raw -r 8000 -b 8 -c 1 --bits 16 --encoding signed-integer --endian little $1 $2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
successfully tested on Debian 10 (buster) with SoX v14.4.2