| 1234567891011121314 |
- #!/bin/bash
- if [ $# -ne 1 ]; then
- echo "1 arg, target host (120,151?)"
- exit 1
- fi
- #44100 ??
- echo gst-launch-1.0 alsasrc do-timestamp=true ! audioconvert ! audioresample ! mulawenc ! rtppcmupay ! udpsink host=$1 port=5001
- gst-launch-1.0 alsasrc do-timestamp=true ! audioconvert ! audioresample ! mulawenc ! rtppcmupay ! udpsink host=$1 port=5001
- #gst-launch-1.0 alsasrc slave-method=0 ! audioconvert ! audioresample ! alawenc ! rtppcmapay ! udpsink host=$1 port=5001
- #gst-launch-1.0 alsasrc ! audioconvert ! audioresample ! alawenc ! rtppcmapay ! udpsink host=
|