summaryrefslogtreecommitdiff
path: root/transcode-screencast.sh
diff options
context:
space:
mode:
Diffstat (limited to 'transcode-screencast.sh')
-rwxr-xr-xtranscode-screencast.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/transcode-screencast.sh b/transcode-screencast.sh
deleted file mode 100755
index 61a9306..0000000
--- a/transcode-screencast.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-INPUT_VIDEO=$1
-INPUT_AUDIO=$2
-OUTPUT=$3
-ffmpeg -i "$INPUT_VIDEO" \
- -i "$INPUT_AUDIO" \
- -vcodec libx264 \
- -pix_fmt yuv420p \
- -acodec aac \
- -b:a 320k \
- "$OUTPUT"