root/reindex
| Revision 86, 261 bytes (checked in by steve, 2 years ago) | |
|---|---|
|
|
| Line | |
|---|---|
| 1 | #!/bin/sh |
| 2 | |
| 3 | if [[ ! -f noindex.avi ]]; then |
| 4 | mencoder -ovc copy -oac copy -ofps 24000/1001 -o noindex.avi $1 |
| 5 | fi |
| 6 | |
| 7 | if [[ ! -f index.avi ]]; then |
| 8 | mencoder -forceidx -ovc copy -oac copy -o index.avi noindex.avi |
| 9 | fi |
| 10 | |
| 11 | if [[ -f noindex.avi ]]; then |
| 12 | rm noindex.avi |
| 13 | fi |
Note: See TracBrowser
for help on using the browser.
