From 709cd4a80267a7e31a6c7af9edc67640b99c4079 Mon Sep 17 00:00:00 2001
From: David Trattnig <david@subsquare.at>
Date: Wed, 13 Jul 2022 19:03:34 +0200
Subject: [PATCH] Test: Add base config and url

---
 tests/test_stream.liq | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/tests/test_stream.liq b/tests/test_stream.liq
index c6c8974..28444cb 100755
--- a/tests/test_stream.liq
+++ b/tests/test_stream.liq
@@ -17,11 +17,16 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-http_starturl = "https://securestream.o94.at/live.mp3"
-# http_starturl = "http://stream01.kapper.net:8001/live.mp3"
-# http_starturl = "https://live.helsinki.at:8088/live160.ogg"
-# http_starturl = "https://stream.fro.at/fro-128.ogg"
-# http_starturl = "http://212.89.182.114:8008/frf"
 
-input_http = input.http(id="in_http", max_buffer=5., timeout=10.0, start=true, http_starturl)
+%include "base_config.liq"
+
+
+url = "https://orf-live.ors-shoutcast.at/oe1-q2a"
+# url = "https://securestream.o94.at/live.mp3"
+# url = "http://stream01.kapper.net:8001/live.mp3"
+# url = "https://live.helsinki.at:8088/live160.ogg"
+# url = "https://stream.fro.at/fro-128.ogg"
+# url = "http://212.89.182.114:8008/frf"
+
+input_http = input.http(id="in_http", max_buffer=5., timeout=10.0, start=true, url)
 output.alsa(device="default", mksafe(input_http), bufferize=true)
\ No newline at end of file
-- 
GitLab