summaryrefslogtreecommitdiff
path: root/bin/decode+edit+encodeDV
blob: ac64d2ca12327977586ca23be5d9bd64cfa865b3 (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.dv
  7. HEIGHT=360
  8. RATIO_NUM=4
  9. RATIO_DEN=3
  10. # * bitrates and bits in parens based on https://developer.apple.com/library/content/documentation/General/Reference/HLSAuthoringSpec/Requirements.html
  11. # + bits rounded up to include nearby modulo 16 formats
  12. # + best (i.e. high-modulo) 16:9 heights: 216 288 360 432 576 720
  13. # + best (i.e. high-modulo) 4:3 heights: 288 312 384 480 624 816
  14. RATIO_NUM=${RATION_NUM:-16}
  15. RATIO_DEN=${RATION_DEN:-9}
  16. WIDTH=${WIDTH:-$((HEIGHT*RATIO_NUM/RATIO_DEN))}
  17. BITS=$((WIDTH*HEIGHT))
  18. if [ $BITS -le 110592 ]; then # 234p → 97344
  19. VBITRATE=145000
  20. elif [ $BITS -le 150528 ]; then # 270p → 129600
  21. VBITRATE=365000
  22. elif [ $BITS -le 196608 ]; then # 360p → 172800
  23. VBITRATE=730000
  24. elif [ $BITS -le 331776 ]; then # 432p → 331776
  25. VBITRATE=1100000
  26. elif [ $BITS -le 589824 ]; then # 540p → 518400
  27. VBITRATE=2000000
  28. elif [ $BITS -le 921600 ]; then # 720p → 921600
  29. VBITRATE=3000000
  30. fi
  31. mkdir -p $(dirname "$OUTPUT")
  32. # based on http://www.webmproject.org/docs/encoder-parameters/#real-time-cbr-encoding-and-streaming
  33. # + scale+watermark trick based on http://stackoverflow.com/a/10937357
  34. # + scale to square pixels as needed
  35. # + Add 1s latency (deadline)
  36. ffmpeg -hide_banner -threads auto -y \
  37. -i "$INPUT" \
  38. -i "$LOGO" \
  39. -filter_complex \
  40. "[0:v]scale=iw*sar*$HEIGHT/ih:$HEIGHT,setsar=1[bg];
  41. [bg][1:v]overlay=main_w-overlay_w-20:main_h-overlay_h-20[v]" \
  42. -map '[v]' \
  43. -target pal-dv "$OUTPUT"