Re: [Savonet-users] [savonet/liquidsoap] Liquidsoap support multiple radio stations at once? (#632)

2018-09-21 Thread Euguar
The simple config is: ``` #PATHS popmusic=playlist(mode="randomize","/path/to/pop/playlist.m3u") rockmusic=playlist(mode="randomize","/path/to/rock/playlist.m3u") classicmusic=playlist(mode="randomize","/path/to/classic/playlist.m3u") popbroadcasting=mksafe(popbroadcasting)

[Savonet-users] [savonet/liquidsoap] Metadata bug (#625)

2018-09-14 Thread Euguar
I found some bugs with metadata tag parsing: 1. The _Artist_ field has _Title_ field, and the _Title_ field has _Artist_ field (ex.: "Pink - Aerosmith". It must be "Aerosmith - Pink"). Temporarily solution is map_metadata function using to replace fields. 2. If the field _Artist_ or _Title_

Re: [Savonet-users] [savonet/liquidsoap] Playlists with multiple root directories (#718)

2019-02-21 Thread Euguar
Hi! You may to use this config: `radio = playlist(reload = 1, reload_mode = "rounds", "/root")`. Liquidsoap will be upload files from subdirectories. Or you may to create playlist file (ex. `m3u` or `pls`): ``` #EXTM3U #EXTINF:0,Artist - Title /root/dir1/song1.mp3 #EXTINF:0,Artist - Title

Re: [Savonet-users] [savonet/liquidsoap] Ability to suppress metadata being sent to Icecast/SHOUTcast/etc? (#738)

2019-03-20 Thread Euguar
Hello! Maybe **drop_metadata** function helps you: ``` music=playlist("/path/to/your/music") jingles=playlist("/path/to/your/jingles") jingles=drop_metadata(jingles) ``` See https://www.liquidsoap.info/doc-1.3.6/reference.html#drop_metadata -- You are receiving this because you are subscribed to

Re: [Savonet-users] [savonet/liquidsoap] Need help with cutting a live stream (#739)

2019-03-20 Thread Euguar
Hello! If you're broadcasting via Icecast try to use `` value on server config for mountpoint. This value which will set the length of time in seconds a listener will stay connected to the stream. -- You are receiving this because you are subscribed to this thread. Reply to this email directly