summaryrefslogtreecommitdiff
path: root/bin/decode+edit+encode
blob: 749913021c0124430ad3582dd5dd42bb1411555d (plain)
  1. #!/bin/sh
  2. # FIXME: Handle audio
  3. set -e
  4. INPUT=../src/omni/show0/earth.mp4
  5. LOGO=../../content/icon_small.png
  6. OUTPUT=../tmp/omni/show0/earth.webm
  7. HEIGHT=360
  8. SPEED_VP8=4
  9. # * height steps and bitrates based on https://developer.apple.com/library/content/documentation/General/Reference/HLSAuthoringSpec/Requirements.html
  10. # TODO: adjust height steps or bitrates for 4:3 aspect ratio
  11. # TODO: resolve steps from source height using http://aarmstrong.org/tutorials/aspect-ratios-and-h264
  12. if [ $HEIGHT -le 234 ]; then VBITRATE=145000;
  13. elif [ $HEIGHT -le 270 ]; then VBITRATE=365000;
  14. elif [ $HEIGHT -le 360 ]; then VBITRATE=730000;
  15. elif [ $HEIGHT -le 432 ]; then VBITRATE=1100000;
  16. elif [ $HEIGHT -le 540 ]; then VBITRATE=2000000;
  17. elif [ $HEIGHT -le 720 ]; then VBITRATE=3000000;
  18. fi
  19. mkdir -p $(dirname "$OUTPUT")
  20. # based on http://www.webmproject.org/docs/encoder-parameters/#real-time-cbr-encoding-and-streaming
  21. # + scale+watermark trick based on http://stackoverflow.com/a/10937357
  22. # + scale to square pixels as needed
  23. # + Add 1s latency (deadline)
  24. ffmpeg -hide_banner -threads auto -y -re \
  25. -i "$INPUT" \
  26. -i "$LOGO" \
  27. -filter_complex \
  28. "[0:v]scale=iw*sar*$HEIGHT/ih:$HEIGHT,setsar=1[bg];
  29. [bg][1:v]overlay=main_w-overlay_w-20:main_h-overlay_h-20[v]" \
  30. -map '[v]' \
  31. -pix_fmt yuv420p \
  32. -codec:v vp8 -quality realtime -deadline 1000000 -cpu-used "$SPEED_VP8" \
  33. -b:v "$VBITRATE" -minrate "$VBITRATE" -maxrate "$VBITRATE" \
  34. -undershoot-pct 95 -bufsize $((6000*VBITRATE/1000)) -rc_init_occupancy $((4000*VBITRATE/1000)) \
  35. -max-intra-rate 0 \
  36. -qmin 4 -qmax 56 \
  37. -f webm "$OUTPUT"