diff options
author | MaZderMind <git@mazdermind.de> | 2016-08-05 16:32:49 +0200 |
---|---|---|
committer | MaZderMind <git@mazdermind.de> | 2016-08-05 16:32:49 +0200 |
commit | 463ab55b178935d72442b71748786c22f1f0e027 (patch) | |
tree | b5bb905495e6131bd64f2b4aa625f438169eeaa7 /example-scripts/ffmpeg/source-nostream-music.sh | |
parent | 59f0abcf365e7c80bb51912d95ccc6d262d759c8 (diff) |
allows overriding the default-config of the example-scripts
Diffstat (limited to 'example-scripts/ffmpeg/source-nostream-music.sh')
-rwxr-xr-x | example-scripts/ffmpeg/source-nostream-music.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/example-scripts/ffmpeg/source-nostream-music.sh b/example-scripts/ffmpeg/source-nostream-music.sh index 23db81d..27df45a 100755 --- a/example-scripts/ffmpeg/source-nostream-music.sh +++ b/example-scripts/ffmpeg/source-nostream-music.sh @@ -1,5 +1,10 @@ #!/bin/sh -. `dirname "$0"`/../config.sh +confdir="`dirname "$0"`/../" +. $confdir/default-config.sh +if [ -f $confdir/config.sh ]; then + . $confdir/config.sh +fi + wget -nc -O /tmp/machine_lullaby_1.ogg http://c3voc.mazdermind.de/testfiles/machine_lullaby_1.ogg while true; do ffmpeg -y -nostdin \ |