| Linux Forum Index » Linux Setup » MPlayer question...... |
|
Page 1 of 1 |
|
| Author |
Message |
| piscesboy... |
Posted: Fri Sep 11, 2009 1:23 am |
|
|
|
Guest
|
Forgive me for asking this here but I can't find a good mplayer group
to ask this question.
Is it possible to nest playlists? Can I call a playlist from inside
another playlist? What is the syntax for doing so? |
|
|
| Back to top |
|
|
|
| Matt Giwer... |
Posted: Tue Sep 22, 2009 9:19 pm |
|
|
|
Guest
|
piscesboy wrote:
Quote: Forgive me for asking this here but I can't find a good mplayer group
to ask this question.
Is it possible to nest playlists? Can I call a playlist from inside
another playlist? What is the syntax for doing so?
Haven't seen anything on it but there is supposed to be a GUI for it some
place that will likely have such a feature.
This will work.
#!/bin/bash
i=`expr 100`
while [ $# -gt 0 ];
do
mplayer $1
shift;
done
so will
mplayer file1 file2 file3 file4
and
mplayer file*
The former lets you quit one to start the next. The latter quits them all
with one quit [Q].
As you are new to it, you can also change your config file to default to
fullscreen [F].
--
A real American only needs one finger while an Englishman requires two.
-- The Iron Webmaster, 4176
http://www.giwersworld.org/holo3/ a12
Tue Sep 22 23:13:01 EDT 2009 |
|
|
| Back to top |
|
|
|
|