[MPlayer-users] RTFM didn't help
Martin Collins
martin at mkcollins.org
Sat Mar 1 23:56:57 CET 2003
On Sat, 1 Mar 2003 20:44:38 +0000
George Reynolds <george at dodgybloke.co.uk> wrote:
> 1.Stop the next clip from playing in the playlist until you press a
> key.
This shell script will pause between clips until you hit return:
for i in clip1.avi clip2.avi
do
mplayer -fs $i
read
done
You will see the desktop between clips though.
> 2.Produce a blank screen between clips
Create a short blank video clip and play that instead of pausing:
for i in clip1.avi clip2.avi
do
mplayer -fs $i
mplayer -fs blank.avi -loop 0
done
The blank clip will loop until you hit q then the next clip will play.
No doubt someone else will know a better way but these should work
well enough.
Martin
More information about the MPlayer-users
mailing list