summaryrefslogtreecommitdiff
path: root/bin/loop+encode+stream
blob: f8403dd58d4fb198fac99ca363911244ab847ed9 (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. ABITRATE=64000
  13. VBITRATE=500000
  14. # based on http://www.webmproject.org/docs/encoder-parameters/#real-time-cbr-encoding-and-streaming
  15. # + Drop frames, aggressively treat as static, and use fastest cpu
  16. ffmpeg -threads auto -re \
  17. -stream_loop -1 -i "$INPUT" \
  18. -codec:a libopus -ac 2 -b:a "$ABITRATE" -ar 48000 \
  19. -vn \
  20. -f rtp "rtp://$IP:$FIRSTPORT?pkt_size=1200" \
  21. -an \
  22. -pix_fmt yuv420p \
  23. -codec:v vp8 -quality realtime -deadline realtime -cpu-used 15 \
  24. -b:v "$VBITRATE" -minrate "$VBITRATE" -maxrate "$VBITRATE" \
  25. -undershoot-pct 95 -bufsize $((6000*VBITRATE/1000)) -rc_init_occupancy $((4000*VBITRATE/1000)) \
  26. -max-intra-rate 0 \
  27. -qmin 4 -qmax 56 \
  28. -static-thresh 500 -skip_threshold 50 \
  29. -f rtp "rtp://$IP:$((FIRSTPORT+2))?pkt_size=1200"