mirror of
https://github.com/mpv-player/mpv
synced 2024-11-03 03:19:24 +01:00
d9c6d781f0
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2242 b3059339-0415-0410-9bf9-f77b7e298cf2
21 lines
408 B
Bash
Executable File
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
|