Fix launch so that it can play a list of files, now that EOS works enough. (It needs to not have to restart gstreamer...

Original commit message from CVS:
Fix launch so that it can play a list of files, now that EOS works enough.
(It needs to not have to restart gstreamer each time, but good enough for
now ;-) )
This commit is contained in:
Richard Boulton 2001-01-22 23:39:23 +00:00
parent a3aad0c1a2
commit ba237a38dd
2 changed files with 8 additions and 4 deletions

View file

@ -1,2 +1,4 @@
#/usr/bin/sh
gstreamer-launch disksrc "location=$1" ! mp3parse ! mpg123 ! audiosink
#! /bin/sh
for loc in "$@"; do
gstreamer-launch disksrc "location=$loc" ! mp3parse ! mpg123 ! audiosink
done

View file

@ -1,2 +1,4 @@
#/usr/bin/sh
gstreamer-launch disksrc "location=$1" ! mp3parse ! mpg123 ! audiosink
#! /bin/sh
for loc in "$@"; do
gstreamer-launch disksrc "location=$loc" ! mp3parse ! mpg123 ! audiosink
done