From 225455af096ff4294d9d63f307b52084b1f6b2b0 Mon Sep 17 00:00:00 2001 From: Lucas Bickel Date: Tue, 4 Apr 2017 13:13:13 +0200 Subject: [PATCH] Do not explicity load pervasives.liq As per the liquidsoap docs the file is loaded per default anyhow http://savonet.sourceforge.net/doc-svn/script_loading.html. I think the output.shoutcast might be the only place where we really use it though. Testing this against shoutcast would be nice, but I don't have one and am not sure how relevant it still is. --- utils/airtime-test-stream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/airtime-test-stream.py b/utils/airtime-test-stream.py index a2ab06982..7121c8c0b 100644 --- a/utils/airtime-test-stream.py +++ b/utils/airtime-test-stream.py @@ -98,7 +98,7 @@ try: if stream_type == "icecast": command = "%s 'output.icecast(%%vorbis, host = \"%s\", port = %s, user= \"%s\", password = \"%s\", mount=\"%s\", sine())'" % (liquidsoap_exe, host, port, user, password, mount) else: - command = "%s /usr/lib/airtime/pypo/bin/liquidsoap_scripts/library/pervasives.liq 'output.shoutcast(%%mp3, host=\"%s\", port = %s, user= \"%s\", password = \"%s\", sine())'" \ + command = "%s 'output.shoutcast(%%mp3, host=\"%s\", port = %s, user= \"%s\", password = \"%s\", sine())'" \ % (liquidsoap_exe, host, port, user, password) if not verbose: