gstreamer/examples/launch/mp3play
Richard Boulton ba237a38dd 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 ;-) )
2001-01-22 23:39:23 +00:00

5 lines
109 B
Bash
Executable file

#! /bin/sh
for loc in "$@"; do
gstreamer-launch disksrc "location=$loc" ! mp3parse ! mpg123 ! audiosink
done