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