comparison TOOLS/x2mpsub.sh @ 2241:2c6c21e1a1a1

converts all subtitles in . to mpsub format
author gabucino
date Wed, 17 Oct 2001 18:07:40 +0000
parents
children
comparison
equal deleted inserted replaced
2240:5d476d03e2b3 2241:2c6c21e1a1a1
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