root/reindex

Revision 86, 261 bytes (checked in by steve, 2 years ago)

Force output fps to 23.97

  • Property svn:executable set to *
Line 
1#!/bin/sh
2
3if [[ ! -f noindex.avi ]]; then
4        mencoder -ovc copy -oac copy -ofps 24000/1001 -o noindex.avi $1
5fi
6
7if [[ ! -f index.avi ]]; then
8        mencoder -forceidx -ovc copy -oac copy -o index.avi noindex.avi
9fi
10
11if [[ -f noindex.avi ]]; then
12        rm noindex.avi
13fi
Note: See TracBrowser for help on using the browser.