summaryrefslogtreecommitdiff
path: root/bin/decode+edit
diff options
context:
space:
mode:
Diffstat (limited to 'bin/decode+edit')
-rwxr-xr-xbin/decode+edit13
1 files changed, 6 insertions, 7 deletions
diff --git a/bin/decode+edit b/bin/decode+edit
index ed4ac8b..9a96210 100755
--- a/bin/decode+edit
+++ b/bin/decode+edit
@@ -4,18 +4,17 @@
set -e
-HEIGHT=360
-
-MOVIE=../src/omni/show0/earth.mp4
+INPUT=../src/omni/show0/earth.mp4
LOGO=../../content/icon_small.png
+OUTPUT=../tmp/omni/show0/earth.yuv
-TMPMOVIE=../tmp/omni/show0/earth.yuv
+HEIGHT=360
-mkdir -p $(dirname "$TMPMOVIE")
+mkdir -p $(dirname "$OUTPUT")
# + loop-in-filter trick based on http://video.stackexchange.com/a/16933
ffmpeg -threads auto -y \
- -i "$MOVIE" \
+ -i "$INPUT" \
-i "$LOGO" -filter_complex 'overlay=main_w-overlay_w-20:main_h-overlay_h-20' \
-an \
- -f yuv4mpegpipe "$TMPMOVIE"
+ -f yuv4mpegpipe "$OUTPUT"