Added protection about only running the organizing/merging if video files haven't...
[videoscripts/.git] / mov2avi
1 #!/bin/bash
2
3 #transcode -i $* -y ffmpeg -F wmv2 -o $*.avi
4 #find . -name "*.mov" | xargs -l1 /home/ajp/bin/mov2avi
5
6 mencoder -o "$*.avi" -ovc lavc -oac lavc -lavcopts acodec=mp3:vcodec=mpeg4:vbitrate=6000 -srate 48000 "$*"
7