mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
ba237a38dd
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 ;-) )
4 lines
109 B
Bash
Executable file
4 lines
109 B
Bash
Executable file
#! /bin/sh
|
|
for loc in "$@"; do
|
|
gstreamer-launch disksrc "location=$loc" ! mp3parse ! mpg123 ! audiosink
|
|
done
|