Mercurial > mplayer.hg
view TOOLS/x2mpsub.sh @ 18229:e0d18b30598c
Sync with 1.47, patch by Johan Bos < dariusjb AH gmail com> and LMJ.
Hail to the Foggy Team!!!!!!!!!!
Not hooked up with the rest of the build system yet as it's not been re-read and proofread enough, and maybe doesn't even validate ;)
pre8 or rc1 can probably wait till these issues are straighten up :)
author | gpoirier |
---|---|
date | Sun, 23 Apr 2006 21:43:49 +0000 |
parents | 2c6c21e1a1a1 |
children |
line wrap: on
line source
#!/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