annotate TOOLS/x2mpsub.sh @ 6603:6eab60ea6c11
colorspace converter tests (memory corruption tests at different width/src/dst)
quite impressive results only 1 of the 13 rgb->rgb converters fails for the c versions
... sadly only 1 of the mmx converters passes though :( ... i feared allready that last mplayerxp merge reversed the bugfixes :((((
author |
michael |
date |
Sat, 29 Jun 2002 15:01:23 +0000 |
parents |
2c6c21e1a1a1 |
children |
|
rev |
line source |
2241
|
1 #!/bin/sh
|
|
2 #
|
|
3 # This script converts the subtitles in the current directory into
|
|
4 # MPsub format (into ./converted-subtitles/*)
|
|
5 #
|
|
6 # Gabucino. No warranty. :)
|
|
7 #
|
|
8
|
|
9 TMP="x2mpsub-$RANDOM"
|
|
10 mkdir "$TMP"
|
|
11 touch "$TMP/$TMP"
|
|
12
|
|
13 for x in *; do
|
|
14 echo "Converting $x"
|
|
15 mplayer "$TMP/$TMP" -sub "$x" -dumpmpsub -quiet > /dev/null 2> /dev/null
|
|
16 mv dump.mpsub "$TMP/$x"
|
|
17 done
|
|
18
|
|
19 rm "$TMP/$TMP"
|
|
20 mv "$TMP" converted-subtitles
|