]> git.phdru.name Git - audio-cdr-video.git/blob - video/tc-fix-avi-index
Initail import
[audio-cdr-video.git] / video / tc-fix-avi-index
1 #! /bin/sh
2
3
4 if [ -z "$1" ]; then
5    echo "Usage: $0 input.avi"
6    exit 1
7 fi
8
9
10 # This call of transcode only copies ONE audiostream from the input;
11 # if there are more - you need to extract them separately and merge
12 # into the output. See tc_extract_a1 for an example.
13
14 transcode -i "$1" -P3 -u 50 -o output.avi &&
15 exec mv output.avi "$1"