summaryrefslogtreecommitdiff
path: root/bin/decode+edit+encode
diff options
context:
space:
mode:
Diffstat (limited to 'bin/decode+edit+encode')
-rwxr-xr-xbin/decode+edit+encode18
1 files changed, 12 insertions, 6 deletions
diff --git a/bin/decode+edit+encode b/bin/decode+edit+encode
index 7499130..edd428f 100755
--- a/bin/decode+edit+encode
+++ b/bin/decode+edit+encode
@@ -15,12 +15,18 @@ SPEED_VP8=4
# * height steps and bitrates based on https://developer.apple.com/library/content/documentation/General/Reference/HLSAuthoringSpec/Requirements.html
# TODO: adjust height steps or bitrates for 4:3 aspect ratio
# TODO: resolve steps from source height using http://aarmstrong.org/tutorials/aspect-ratios-and-h264
- if [ $HEIGHT -le 234 ]; then VBITRATE=145000;
-elif [ $HEIGHT -le 270 ]; then VBITRATE=365000;
-elif [ $HEIGHT -le 360 ]; then VBITRATE=730000;
-elif [ $HEIGHT -le 432 ]; then VBITRATE=1100000;
-elif [ $HEIGHT -le 540 ]; then VBITRATE=2000000;
-elif [ $HEIGHT -le 720 ]; then VBITRATE=3000000;
+if [ $HEIGHT -le 234 ]; then
+ VBITRATE=145000
+elif [ $HEIGHT -le 270 ]; then
+ VBITRATE=365000
+elif [ $HEIGHT -le 360 ]; then
+ VBITRATE=730000
+elif [ $HEIGHT -le 432 ]; then
+ VBITRATE=1100000
+elif [ $HEIGHT -le 540 ]; then
+ VBITRATE=2000000
+elif [ $HEIGHT -le 720 ]; then
+ VBITRATE=3000000
fi
mkdir -p $(dirname "$OUTPUT")