[MPlayer-cvslog] r35690 - trunk/TOOLS/mplmult.sh
reimar
subversion at mplayerhq.hu
Sun Dec 16 14:49:36 CET 2012
Author: reimar
Date: Sun Dec 16 14:49:36 2012
New Revision: 35690
Log:
Minor improvements to the mplmult script.
Modified:
trunk/TOOLS/mplmult.sh
Modified: trunk/TOOLS/mplmult.sh
==============================================================================
--- trunk/TOOLS/mplmult.sh Sun Dec 16 00:09:27 2012 (r35689)
+++ trunk/TOOLS/mplmult.sh Sun Dec 16 14:49:36 2012 (r35690)
@@ -35,10 +35,12 @@ done
mkfifo $fifo_list
(cat $dir/stream.yuv | tee $fifo_list > /dev/null ) &
for fifo in $fifo_list; do
- # -benchmark is neccessary so that it will not do any timing.
+ # -benchmark is necessary so that it will not do any timing.
# the master instance already takes care of it and not specifying
# it will break A-V sync.
- mplayer -nocache -quiet -benchmark "$fifo" > /dev/null 2>&1 &
+ # -demuxer y4m is necessary because otherwise excessive probing
+ # (probably by # the lavf demuxer) causes a long delay.
+ mplayer -nocache -quiet -benchmark -demuxer y4m "$fifo" > /dev/null 2>&1 &
done
mplayer -nocache -fixed-vo -vo yuv4mpeg:file=$dir/stream.yuv "$@"
More information about the MPlayer-cvslog
mailing list