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