![]() |
2006-12-26
, 15:03
|
Posts: 503 |
Thanked: 267 times |
Joined on Jul 2006
@ Helsinki
|
#12
|
![]() |
2007-06-29
, 17:25
|
Posts: 21 |
Thanked: 1 time |
Joined on Sep 2006
|
#13
|
MPlayer supports -playlist option, its usage is described in mplayer documentation: http://www.mplayerhq.hu/DOCS/HTML/en/index.html
But generally you need to create a text file which contains names of your media files, one file name per line (playlist.txt for example). Then you need to run MPlayer with -playlist option:
mplayer -playlist playlist.txt
Some other useful options are -shuffle (randomize order) and -loop (play files in a loop). For example the following command line uses all these options to infinitely play files from some playlist in random order:
mplayer -loop 0 -shuffle -playlist playlist.txt
PS. You need the latest version on MPlayer (at least mplayer_1.0rc1-maemo.6) as the older versions had a bug that prevented from playing more than one file per mplayer run.
![]() |
2007-06-29
, 18:16
|
|
Posts: 299 |
Thanked: 168 times |
Joined on Jun 2006
@ Wales UK
|
#14
|
/media/mmc1/mp3
find /media/mmc1/mp3/Gary_Moore -print > plist.txt
find /media/mmc1/mp3 -print > plist.txt
mplayer -loop 0 -shuffle -playlist plist.txt
![]() |
2007-06-29
, 19:49
|
Posts: 21 |
Thanked: 1 time |
Joined on Sep 2006
|
#15
|
![]() |
2007-07-03
, 01:26
|
Posts: 21 |
Thanked: 1 time |
Joined on Sep 2006
|
#16
|
thanks
bsterix