new output formats added for conversion, video cut script added, updates
[video-handling.git] / ffmpeg-all-mts2avi
1 #!/bin/bash
2 #
3 # 2010, Calin-Andrei Burloiu, calin.burloiu@gmail.com
4 #
5 # This scripts converts all mts files to avi starting from a root directory
6 # recursively. The avi files are placed in the same directory as the 
7 # original mts files.
8 #
9
10 if [ $# -ne 1 ]; then
11         echo "usage: $0 root_path"
12 fi
13
14 root_path=$1
15
16 for i in $(find $root_path -name "*.mts"); do
17         #echo $(dirname $i)/$(basename $i .mts).avi
18         ./ffmpeg-mts2avi $i "$(dirname $i)/$(basename $i .mts).avi"
19
20 done