summaryrefslogtreecommitdiff
path: root/bin/loop+encode+stream
blob: cc21629cbac8af4cd860566bb275c8c2510e4f4d (plain)
  1. #!/bin/sh
  2. # TODO: Handle audio from secondary input
  3. set -e
  4. INPUT=../tmp/omni/show0/earth.yuv
  5. HOST=${1:-morla}
  6. if [ "$HOST" = "$(hostname --short)" ]; then
  7. IP=127.0.0.1
  8. else
  9. IP=$(host "$HOST" | grep -Po 'address \K\S+')
  10. fi
  11. FIRSTPORT=${2:-5002} # even number - next 3 ports used too
  12. ACHANNELS=2
  13. AFRAMERATE=48000
  14. ABITRATE=32000
  15. # TODO
  16. HEIGHT=360
  17. # inspired by Apple HLS recommendations
  18. if [ $HEIGHT -le 234 ]; then VBITRATE=145000;
  19. elif [ $HEIGHT -le 270 ]; then VBITRATE=365000;
  20. elif [ $HEIGHT -le 360 ]; then VBITRATE=730000;
  21. elif [ $HEIGHT -le 432 ]; then VBITRATE=1100000;
  22. elif [ $HEIGHT -le 540 ]; then VBITRATE=2000000;
  23. elif [ $HEIGHT -le 720 ]; then VBITRATE=3000000;
  24. fi
  25. # based on http://www.webmproject.org/docs/encoder-parameters/#real-time-cbr-encoding-and-streaming
  26. # + Add 1s latency (deadline)
  27. # + Use same RTP payload types as GStreamer
  28. ffmpeg -hide_banner -threads auto -re \
  29. -stream_loop -1 -i "$INPUT" \
  30. -map '0:a' \
  31. -codec:a libopus -ac "$ACHANNELS" -ar "$AFRAMERATE" -b:a "$ABITRATE" \
  32. -f rtp -payload_type 111 "rtp://$IP:$FIRSTPORT?pkt_size=1200" \
  33. -map '0:v' \
  34. -pix_fmt yuv420p \
  35. -codec:v vp8 -quality realtime -deadline 1000000 -cpu-used 15 \
  36. -b:v "$VBITRATE" -minrate "$VBITRATE" -maxrate "$VBITRATE" \
  37. -undershoot-pct 95 -bufsize $((6000*VBITRATE/1000)) -rc_init_occupancy $((4000*VBITRATE/1000)) \
  38. -max-intra-rate 0 \
  39. -qmin 4 -qmax 56 \
  40. -f rtp -payload_type 100 "rtp://$IP:$((FIRSTPORT+2))?pkt_size=1200"