Re: [Savonet-users] liquidsoap / opam install question

2016-06-01 Thread unosonic
Mark Jeghers: > What are the steps to download/install the liquidsoap-daemon opam package? once you've installed opam: (I've simply used the binary provided here http://opam.ocaml.org/doc/Install.html opam install liquidsoap-daemon I guess the main problem is dependecies. e.g. if you're on an o

Re: [Savonet-users] liquidsoap / opam install question

2016-06-01 Thread Mark Jeghers
What are the steps to download/install the liquidsoap-daemon opam package? From: Romain Beauxis [mailto:to...@rastageeks.org] Sent: Wednesday, June 01, 2016 4:37 AM To: savonet-users Subject: Re: [Savonet-users] liquidsoap / opam install question Hi, Great! Once installed with opam, you should

Re: [Savonet-users] output.shoutcast without icy_id?

2016-06-01 Thread Sarah Alawami
As the Debian packages aren't being maintained anymore, there will be no more updates as of 1.1.1. This as far as I understand, unless someone (not me) wants to take over, build it and submit it to the apt-get repository. > On Jun 1, 2016, at 10:13 AM, Michael Pieper wrote: > > Am 01.06.2016 um

Re: [Savonet-users] rest server

2016-06-01 Thread Feiko
Hi there you all, Sorry I don't get it, If I put this in just an internet browser like firefox then RadioDj (RESTserver) plays next track. http://ip:port/opt?ath=password&command=PlayPlaylistTrack but how do I do this in liquidsoap I thaut http.get(data="opt?ath=password&command=PlayPlaylist

Re: [Savonet-users] output.shoutcast without icy_id?

2016-06-01 Thread Michael Pieper
Am 01.06.2016 um 13:33 schrieb Romain Beauxis: > Yes and it's a bug in 1.2.0. It is fixed in the latest github code. > Prior to 1.2.0 there was no support for icy_id. Is there any plan to have a debian package for 1.2.0 available or do I have to fight with this for me completly unknown OCaml thin

Re: [Savonet-users] he-aac streaming

2016-06-01 Thread DreamStreamKicker
solved by : opam install camlp4 eval `opam config env` make runs now On 6/1/2016 01:38 PM, Romain Beauxis wrote: Hi, It looks like you are mixing two different method of installation. You do not need to run configure, make etc.. When installing with opam. Just follow the instructions in t

Re: [Savonet-users] liquidsoap / opam install question

2016-06-01 Thread unosonic
> binary directly from that path. Moving it isn't recommended as liquidsoap > also uses other resources located under the same prefix. ok, thx, that's what I thought. how do I actually see what kind of support I have in liquidsoap? does liquidsoap --conf-dump only show what's compiled in? > Also

Re: [Savonet-users] Fade Out

2016-06-01 Thread JD Buys
Hi, I want to be able to click a button and then fade the song out and go to the next song in the playlist. JD On Wed, Jun 1, 2016 at 1:39 PM Romain Beauxis wrote: > Hi, > > What exactly are you trying to achieve? > > Romain > > 2016-05-31 15:37 GMT+02:00 JD Buys : > >> Hi, >> >> Can anyone he

Re: [Savonet-users] Fade Out

2016-06-01 Thread Romain Beauxis
Hi, What exactly are you trying to achieve? Romain 2016-05-31 15:37 GMT+02:00 JD Buys : > Hi, > > Can anyone help me to implement a fade.final or fade.out when I run a > telnet command? > > Thanks > > > -- > What NetFl

Re: [Savonet-users] he-aac streaming

2016-06-01 Thread Romain Beauxis
Hi, It looks like you are mixing two different method of installation. You do not need to run configure, make etc.. When installing with opam. Just follow the instructions in the opam section here: http://liquidsoap.fm/download.html Romain 2016-05-31 2:57 GMT+02:00 DreamStreamKicker : > > jess

Re: [Savonet-users] liquidsoap / opam install question

2016-06-01 Thread Romain Beauxis
Hi, Great! Once installed with opam, you should not need anything particular to run liquidsoap. The only specific thing is that the binary isn't located in the usual /usr/bin or /usr/local/bin but in a directory of the form: $HOME/.opam/$OCAML_VERSION/bin. You can typically add a symlink or call t

Re: [Savonet-users] output.shoutcast without icy_id?

2016-06-01 Thread Romain Beauxis
Hi, Yes and it's a bug in 1.2.0. It is fixed in the latest github code. Prior to 1.2.0 there was no support for icy_id. Your changes on output.shoutcast are fine but I think you will still have issues with metadata updates. What I would recommend for now on liquidsoap 1.2.0 is to directly use #

Re: [Savonet-users] he-aac streaming

2016-06-01 Thread DreamStreamKicker
tnxs sir, 6 o'clock in the morning and libgstreamer-ocaml was but -dev not, one step further... On 5/31/2016 03:51 AM, Alex LaBranche wrote: do you have libgstreamer-ocaml-dev installed? $ sudo apt-cache search gstreamer also… im steaming HE-AAC to shoutcast using the following output.sh

[Savonet-users] error running make

2016-06-01 Thread DreamStreamKicker
got ./configure to finish You may now compile liquidsoap by running "make". In case of significant library update, "make clean" is needed first. If you want a local version of the documentation, run "make doc". Then, perform installation by running "make install" as root. And..

[Savonet-users] problem with spaces in filename for file.duration(filename)

2016-06-01 Thread chris
filename = "/path/to/file/file with spaces.mp3" file.duration(filename) how I have to handle this. Up to know i tried - quote(filename) - string.escape(filename) - string.utf8.escape(filename) it is a local file available but I get everytime -1 as a result. Is it a bug? Or do I something wrong?