mirror of
https://github.com/mpv-player/mpv
synced 2024-11-03 03:19:24 +01:00
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:
parent
88a7e9bd0b
commit
d9c6d781f0
20
TOOLS/x2mpsub.sh
Executable file
20
TOOLS/x2mpsub.sh
Executable 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
|
Loading…
Reference in New Issue
Block a user