summaryrefslogtreecommitdiff
path: root/bin/send-gst-rtp-v-a
blob: cd7b4c480fc98aeb2d8ca71876a23a0bb45bc633 (plain)
  1. #!/bin/sh
  2. # Send RTP video and audio streams
  3. set -e
  4. RECIP=${RECIP:-$1} # destination host - default: use multicast group
  5. VDEVICES=${1:-$(find /dev -maxdepth 1 -type c -name 'video*' | sort)}
  6. #ADEVICES=${2:-$(arecord -L | grep -Po '^hw:\S+')}
  7. #ADEVICES=${2:-$(arecord -L | grep -Pom1 '^hw:\S+')}
  8. ADEVICES=${2:-} # FIXME: Detect/blacklist and skip faulty devices
  9. VFORMAT=${VFORMAT:-$3} # H264 VP8 RAW - default: RAW
  10. AFORMAT=${AFORMAT:-$4} # AMR OPUS RAW - default: RAW
  11. set -u
  12. # set multicast groups (also for recorder host) if camera host is wildcard
  13. [ -n "$RECIP" ] || RECMIP=239.255.0.1
  14. [ -n "$RECIP" ] || CAMMIP=239.255.0.2
  15. RECHOST="${RECIP:+host=$RECIP}${RECMIP:+host=$RECMIP auto-multicast=true}"
  16. CAMHOST="${CAMMIP:+address=$CAMMIP auto-multicast=true}"
  17. HEIGHT=240
  18. FRAMERATE=25
  19. AUDIORATE=48000
  20. VCAPS=video/x-raw,height="$HEIGHT"
  21. ACAPS=audio/x-raw,rate="$AUDIORATE",channels=2,depth=16
  22. # * force threads using queues - see http://stackoverflow.com/a/30738533
  23. # * generous queue sizes inspired by https://wiki.xiph.org/GST_cookbook
  24. QUEUE=" queue max-size-bytes=100000000 max-size-time=0"
  25. case "$VFORMAT" in
  26. H264)
  27. # * let x264 use low-latency sliced-threads (i.e. don't disable treads)
  28. VENC="x264enc speed-preset=ultrafast tune=zerolatency bitrate=800 byte-stream=true key-int-max=15 intra-refresh=true option-string=\"slice-max-size=8192:vbv-maxrate=80:vbv-bufsize=10\" ! video/x-h264,profile=baseline ! $QUEUE ! rtph264pay"
  29. ;;
  30. VP8)
  31. VENC="vp8enc min_quantizer=10 max_quantizer=10 cpu-used=10 deadline=1000000 ! video/x-vp8 ! $QUEUE ! rtpvp8pay"
  32. ;;
  33. RAW|'')
  34. VENC="rtpvrawpay"
  35. ;;
  36. esac
  37. case "$AFORMAT" in
  38. AMR)
  39. AENC="amrnbenc ! $QUEUE ! rtpamrpay"
  40. ;;
  41. OPUS)
  42. AENC="opusenc ! $QUEUE ! rtpopuspay"
  43. ;;
  44. RAW|'')
  45. AENC="rtpL16pay"
  46. ;;
  47. esac
  48. stream() {
  49. ID=$1
  50. SRC=$2
  51. echo \
  52. $SRC \
  53. ! "rtpbin.send_rtp_sink_$ID" \
  54. rtpbin."send_rtp_src_$ID" ! queue \
  55. ! udpsink name="rtp_sink_$ID" port=$((5000+ID-1)) $RECHOST \
  56. rtpbin.send_rtcp_src_$ID \
  57. ! udpsink name="rtcp_sink_$ID" port=$((5010+ID-1)) $RECHOST sync=false async=false \
  58. udpsrc name="rtp_src_$ID" port=$((5020+ID-1)) $CAMHOST \
  59. ! rtpbin."recv_rtcp_sink_$ID"
  60. }
  61. n=0
  62. gst-launch-1.0 -v \
  63. rtpbin name=rtpbin \
  64. $(for dev in $VDEVICES; do n=$((n+1)); stream "$n" "v4l2src device=$dev ! $QUEUE ! videoconvert ! $VCAPS ! $QUEUE ! $VENC ! $QUEUE"; done; \
  65. for dev in $ADEVICES; do n=$((n+1)); stream "$n" "alsasrc device=$dev ! $QUEUE ! audioconvert ! $QUEUE ! $AENC ! $QUEUE"; done)
  66. set -e