mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-04 18:27:36 +00:00
7 lines
147 B
Bash
7 lines
147 B
Bash
|
#!/bin/sh
|
||
|
# Plays a raw file
|
||
|
# usage:
|
||
|
# playraw file.raw
|
||
|
# playraw file.raw -d /dev/dsp1 (e.g. for USB headphones)
|
||
|
play -r 8000 -s -2 $1 $2 $3
|