Skip to content
Snippets Groups Projects
Commit 63e0958a authored by David Trattnig's avatar David Trattnig
Browse files

Include Icy Tags / Metadata for outgoing stream.

parent 4dc31045
No related branches found
No related tags found
No related merge requests found
...@@ -46,9 +46,9 @@ def stream_to_icecast(id, encoding, bitrate, host, port, pass, mount_point, url, ...@@ -46,9 +46,9 @@ def stream_to_icecast(id, encoding, bitrate, host, port, pass, mount_point, url,
user_ref := "source" user_ref := "source"
end end
# dumbass liquidsoap cannot handle one output definition for mono and stereo # Liquidsoap cannot handle one output definition for mono and stereo
output_icecast_mono = output.icecast(id = id, host = host, port = port, password = pass, mount = mount_point, fallible = true, url = url, description = description, name = name, genre = genre, user = !user_ref, on_error = on_error, on_connect = on_connect) output_icecast_mono = output.icecast(id = id, host = host, port = port, password = pass, mount = mount_point, fallible = true, url = url, description = description, name = name, genre = genre, user = !user_ref, on_error = on_error, on_connect = on_connect, icy_metadata = "true")
output_icecast_stereo = output.icecast(id = id, host = host, port = port, password = pass, mount = mount_point, fallible = true, url = url, description = description, name = name, genre = genre, user = !user_ref, on_error = on_error, on_connect = on_connect) output_icecast_stereo = output.icecast(id = id, host = host, port = port, password = pass, mount = mount_point, fallible = true, url = url, description = description, name = name, genre = genre, user = !user_ref, on_error = on_error, on_connect = on_connect, icy_metadata = "true")
# %ifencoder %aac # %ifencoder %aac
# if encoding == "aac" then # if encoding == "aac" then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment