Mercurial > mplayer.hg
view TOOLS/subsearch.sh @ 15997:d565dc2ce82e
-delay for MEncoder, final step 6.
TODO: make it encode silence instead of cutting video as cutting
video is unreliable with -ovc copy.
author | ods15 |
---|---|
date | Sun, 17 Jul 2005 19:40:05 +0000 |
parents | 46a8dc7bb562 |
children | 4d8489f21983 |
line wrap: on
line source
#!/bin/sh # # Collects all the appropriate subtitle files in a given directory and # it's subdirectories. No matter what the filename is. # Use this together as: mplayer -sub `subsearch3.sh` movie # Author: Alex # [ $1 ] && cd `dirname $1` _sub_names="" one_dir_search() { for i in $dir/* do case "`echo $i | tr [:upper:] [:lower:]`" in *.sub|*.srt|*.mps|*.txt) _sub_names="$i,$_sub_names" ;; *) ;; esac done } dir="." one_dir_search # add subdirectories too for dir in * do [ -d $dir ] && one_dir_search done _len="`echo $_sub_names | wc -c`" _len=$((_len-2)) echo $_sub_names | cut -b -"$_len"