How to add metadata to stream ? #2243
Replies: 3 comments
-
The
|
Beta Was this translation helpful? Give feedback.
-
Thanks a lot ! |
Beta Was this translation helpful? Give feedback.
-
Thanks @Vaalyn for the help! If you just need to print the metadata, the easiest is to use the def print_metadata(m) =
title = m["title"]
artist = m["artist"]
print("#{artist} - #{title}")
end
radio.on_metadata(print_metadata)
|
Beta Was this translation helpful? Give feedback.
-
This config was working fine in 1.4.4 version but after upgrading liquidsoap to last version it no longer works:
Now it gives me:
I`ve tried using:
It gives:
How to make it work and add metadata to stream ? Sorry if the question is stupid or the solution is obvious. I am trying to make it work to no avail for the last couple of days. There are no sample configs on the Internet or in the documentation I can reference, or the solutions are outdated and no longer work.
Beta Was this translation helpful? Give feedback.
All reactions