blob: b345bd6eec66740cc4474421797758142b944cc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/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.h264.mp4
ffmpeg \
-i Screencast.mov \
-c:v mpeg4 \
-q:v 5 \
-acodec aac \
DomeKey-Screencast.mpeg4.mp4
|