summaryrefslogtreecommitdiff
path: root/bin/decode+edit+encode+stream
diff options
context:
space:
mode:
Diffstat (limited to 'bin/decode+edit+encode+stream')
-rwxr-xr-xbin/decode+edit+encode+stream4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/decode+edit+encode+stream b/bin/decode+edit+encode+stream
index 58144e1..b9c9d7e 100755
--- a/bin/decode+edit+encode+stream
+++ b/bin/decode+edit+encode+stream
@@ -13,7 +13,7 @@ PORT=${2:-5004}
ITERATIONS=${3-0} # endless by default
-SIZE=640x360
+HEIGHT=360
BITRATE=500000
MOVIE=../src/omni/show0/earth.mp4
@@ -24,7 +24,7 @@ LOGO=../../content/icon_small.png
# example "Real-time CBR Encoding and Streaming"
# + Drop frames, aggressively treat as static, and use fastest cpu
ffmpeg -threads auto -re \
- -f lavfi -i "movie=filename=$MOVIE:loop=$ITERATIONS, setpts=N/(FRAME_RATE*TB), scale=$SIZE" \
+ -f lavfi -i "movie=filename=$MOVIE:loop=$ITERATIONS, setpts=N/(FRAME_RATE*TB), scale=-1:$HEIGHT" \
-i "$LOGO" -filter_complex 'overlay=main_w-overlay_w-20:main_h-overlay_h-20' \
-codec:v vp8 -quality realtime -deadline realtime -cpu-used 15 \
-b:v "$BITRATE" -minrate "$BITRATE" -maxrate "$BITRATE" \