mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
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:
parent
a3aad0c1a2
commit
ba237a38dd
2 changed files with 8 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue