extract-thumbnail script improved
[video-handling.git] / old / ffmpeg-mts2webm
1 #!/bin/bash
2 #
3 # Calin-Andrei Burloiu, 2010, calin.burloiu@gmail.com
4 #
5 # This script converts an MTS file into an WebM file, which 
6 # contains a V8 video stream and and a Vorbis audio stream.
7 #
8
9 if test $# -ne 2; then
10     echo "Usage: $0 mts-file avi-file"
11     exit 1
12 fi
13
14 MTS_FILE="$1"
15 AVI_FILE="$2"
16 FFMPEG=/usr/bin/ffmpeg
17
18 if test ! -f "$MTS_FILE"; then
19     echo "Error: No such file $MTS_FILE"
20     exit 1
21 fi
22
23 $FFMPEG -i "$MTS_FILE" -f webm -acodec libvorbis -ab 256k -ar 44100 -ac 2 -vcodec libvpx -b 1400k -r 25 -threads 0 "$AVI_FILE"
24