0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00
mpv/TOOLS/x2mpsub.sh
gabucino d9c6d781f0 converts all subtitles in . to mpsub format
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2242 b3059339-0415-0410-9bf9-f77b7e298cf2
2001-10-17 18:07:40 +00:00

21 lines
408 B
Bash
Executable File

#!/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