Mercurial > mplayer.hg
annotate TOOLS/x2mpsub.sh @ 14874:3d383a0ea7fa
1.159: fix missing check against lame_init_params that was leading to video only files on low (under 32) audio bitrates
1.161: MEncoder multiple files patch by Oded Shimon (ods15)
1.162: Have OSS audio out fall back to s16ne instead of u8 if...
author | kraymer |
---|---|
date | Tue, 01 Mar 2005 17:43:01 +0000 |
parents | 2c6c21e1a1a1 |
children |
rev | line source |
---|---|
2241 | 1 #!/bin/sh |
2 # | |
3 # This script converts the subtitles in the current directory into | |
4 # MPsub format (into ./converted-subtitles/*) | |
5 # | |
6 # Gabucino. No warranty. :) | |
7 # | |
8 | |
9 TMP="x2mpsub-$RANDOM" | |
10 mkdir "$TMP" | |
11 touch "$TMP/$TMP" | |
12 | |
13 for x in *; do | |
14 echo "Converting $x" | |
15 mplayer "$TMP/$TMP" -sub "$x" -dumpmpsub -quiet > /dev/null 2> /dev/null | |
16 mv dump.mpsub "$TMP/$x" | |
17 done | |
18 | |
19 rm "$TMP/$TMP" | |
20 mv "$TMP" converted-subtitles |