From 6196a802e2baa6955948d35339ccad888992d3e0 Mon Sep 17 00:00:00 2001 From: Tony Date: Sun, 10 May 2026 23:51:26 +0200 Subject: [PATCH] add new format in tunein query --- pkg/service/bmx/bmx.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/service/bmx/bmx.go b/pkg/service/bmx/bmx.go index 795f7bc..e3f999a 100644 --- a/pkg/service/bmx/bmx.go +++ b/pkg/service/bmx/bmx.go @@ -20,7 +20,7 @@ import ( // TuneIn endpoint templates used to resolve station and stream URLs. const ( TuneInDescribe = "https://opml.radiotime.com/describe.ashx?id=%s" - TuneInStream = "http://opml.radiotime.com/Tune.ashx?id=%s&formats=mp3,aac,ogg" + TuneInStream = "http://opml.radiotime.com/Tune.ashx?id=%s&formats=mp3,aac,ogg,hls" TuneInNavigateAshx = "http://opml.radiotime.com/?render=json" TuneInSearchAPI = "https://api.radiotime.com/profiles?fulltextsearch=true&version=1.3&query=" )