summaryrefslogtreecommitdiff
path: root/bin/decode+edit+encode
blob: 3735b2f4b76fc4f5b98bcf336ec8c46c72f41363 (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
  13. VBITRATE=145000
  14. elif [ $HEIGHT -le 270 ]; then
  15. VBITRATE=365000
  16. elif [ $HEIGHT -le 360 ]; then
  17. VBITRATE=730000
  18. elif [ $HEIGHT -le 432 ]; then
  19. VBITRATE=1100000
  20. elif [ $HEIGHT -le 540 ]; then
  21. VBITRATE=2000000
  22. elif [ $HEIGHT -le 720 ]; then # 720p → 921600
  23. VBITRATE=3000000
  24. fi
  25. # shellcheck disable=SC2048,SC2059
  26. echo_n() {
  27. printf -- "$*"
  28. }
  29. encode_vp8() { bitrate=$1; speed=$2;
  30. echo_n "-codec:v vp8 -quality realtime -deadline 1000000 -cpu-used $speed \
  31. -b:v $bitrate -minrate $bitrate -maxrate $bitrate \
  32. -undershoot-pct 95 -bufsize $((6000*bitrate/1000)) -rc_init_occupancy $((4000*bitrate/1000)) \
  33. -max-intra-rate 0 \
  34. -qmin 4 -qmax 56"
  35. }
  36. mkdir -p $(dirname "$OUTPUT")
  37. # based on http://www.webmproject.org/docs/encoder-parameters/#real-time-cbr-encoding-and-streaming
  38. # + scale+watermark trick based on http://stackoverflow.com/a/10937357
  39. # + scale to square pixels as needed
  40. # + Add 1s latency (deadline)
  41. ffmpeg -hide_banner -threads auto -y -re \
  42. -i "$INPUT" \
  43. -i "$LOGO" \
  44. -filter_complex \
  45. "[0:v]format=pix_fmts=yuv420p,scale=iw*sar*$HEIGHT/ih:$HEIGHT,setsar=1[bg];
  46. [bg][1:v]overlay=main_w-overlay_w-20:main_h-overlay_h-20[v]" \
  47. -map '[v]' \
  48. $(encode_vp8 "$VBITRATE" "$SPEED_VP8") \
  49. -f webm "$OUTPUT"