aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/video_export.sh
blob: 7313c93c4f47820735f6e3dbe5722d3067c4b6ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

set -x

ffmpeg \
	-i Screencast.mov \
	-f webm \
	-c:v libvpx \
	-b 275k \
	-acodec libvorbis \
	DomeKey-Screencast.webm

ffmpeg \
	-i Screencast.mov \
	-vcodec h264 \
	-acodec aac \
	-strict \
	-2 \
	DomeKey-Screencast.mp4