converts all subtitles in . to mpsub format

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2242 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
gabucino 2001-10-17 18:07:40 +00:00
parent 88a7e9bd0b
commit d9c6d781f0
1 changed files with 20 additions and 0 deletions

20
TOOLS/x2mpsub.sh Executable file
View File

@ -0,0 +1,20 @@
#!/bin/sh
#
# This script converts the subtitles in the current directory into
# MPsub format (into ./converted-subtitles/*)
#
# Gabucino. No warranty. :)
#
TMP="x2mpsub-$RANDOM"
mkdir "$TMP"
touch "$TMP/$TMP"
for x in *; do
echo "Converting $x"
mplayer "$TMP/$TMP" -sub "$x" -dumpmpsub -quiet > /dev/null 2> /dev/null
mv dump.mpsub "$TMP/$x"
done
rm "$TMP/$TMP"
mv "$TMP" converted-subtitles