summaryrefslogtreecommitdiff
path: root/bin/loop+encode+stream
blob: 0f29ed1e00945bfdd128cc78f47fea3f2918af63 (plain)
  1. #!/bin/sh
  2. # TODO: Handle audio from secondary input
  3. set -e
  4. HOST=${1:-morla}
  5. if [ "$HOST" = "$(hostname --short)" ]; then
  6. IP=127.0.0.1
  7. else
  8. IP=$(host "$HOST" | grep -Po 'address \K\S+')
  9. fi
  10. FIRSTPORT=${2:-5002} # even number - next 3 ports used too
  11. ABITRATE=64000
  12. VBITRATE=500000
  13. TMPMOVIE=../tmp/omni/show0/earth.yuv
  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 "$TMPMOVIE" \
  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"