Hi,

You should be able to do something like this:

# Main source
s = playlist(...)

# Function to recode metadata
def recode_meta(m) =
  def f(tv) =
    t = fst(tv)
    v = snd(tv)
    t = string.recode(t)
    v = string.recode(v)
    (t,v)
  end
  list.map(f,m)
end

# Recode metadata
s = map_metadata(recode_meta,s)

# Play the source
output.icecast(s)

Cheers,

Samuel

On Tue, Jul 21, 2015 at 4:17 PM, Serg Makles <[email protected]> wrote:
>
> Help, please! I see there is an opportunity to convert an encoding of the 
> metadata (camomile). I have some files in the playlist that have non-lating 
> symbols in its tags, and it is not in UTF-8 encoding. What can I add to the 
> .liq file to make possilbe convert its tags before sending metadata to 
> icecast? I dont use any metadata customizing now. Is it possible to convert 
> the metadata, which is sent from DJ's software?
> THANK you very much!
>
> Serg Makles.
> ------------------------------------------------------------------------------
> Don't Limit Your Business. Reach for the Cloud.
> GigeNET's Cloud Solutions provide you with the tools and support that
> you need to offload your IT needs and focus on growing your business.
> Configured For All Businesses. Start Your Cloud Today.
> https://www.gigenetcloud.com/
> _______________________________________________
> Savonet-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/savonet-users

------------------------------------------------------------------------------
_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to