From d9c6d781f081dd7fb423c39ad35dd51738de1c28 Mon Sep 17 00:00:00 2001 From: gabucino Date: Wed, 17 Oct 2001 18:07:40 +0000 Subject: converts all subtitles in . to mpsub format git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2242 b3059339-0415-0410-9bf9-f77b7e298cf2 --- TOOLS/x2mpsub.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 TOOLS/x2mpsub.sh (limited to 'TOOLS') diff --git a/TOOLS/x2mpsub.sh b/TOOLS/x2mpsub.sh new file mode 100755 index 0000000000..dd214f3e06 --- /dev/null +++ b/TOOLS/x2mpsub.sh @@ -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 -- cgit v1.2.3