Re: [Savonet-users] [savonet/liquidsoap] Release tarball contains src/operators/fade.ml (#682)

2018-12-26 Thread Lucas Bickel
No problem at all, the packages still build fine they just fail linting after the fact which isn't much of an issue. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [Savonet-users] [savonet/liquidsoap] Release tarball contains src/operators/fade.ml (#682)

2018-12-26 Thread Lucas Bickel
FWIW I just noticed that `src/operators/fade.ml` was deleted in 655771e3f282e50dbec2f36f652a0cd21786b242. I can't tell why the removal didn't make it into the release tarball. IMO the rqueue error in my issue is probably not related. -- You are receiving this because you are subscribed to

[Savonet-users] [savonet/liquidsoap] Release tarball contains src/operators/fade.ml (#682)

2018-12-25 Thread Lucas Bickel
**Describe the bug** The release tarball seems to contain a file that I cannot find in the git repo. The file surfaced thanks to the fsf-address check from my Fedora builds. **To Reproduce** I'm grabbing the tarball like so ``` curl -L -O

Re: [Savonet-users] [savonet/liquidsoap] URGENT autodj stop centovacast (#678)

2018-12-23 Thread Lucas Bickel
> liquidsoap generates logs somewhere? Liquidsoap can generate logs and they are usually helpful in debugging issues. I don't know if Centovacast enables logging in liquidsoap or captures liquidsoaps output in a meaningful way. You could look in `/var/log/liquidsoap` which is the default

Re: [Savonet-users] [savonet/liquidsoap] URGENT autodj stop centovacast (#678)

2018-12-23 Thread Lucas Bickel
> Is there a newer version? Yes, liquidsoap 1.3.4 has been available since September. I don't recall 1.3.4 introducing any breaking changes over 1.3.3. > or is it possible to install an older version? I'm not sure as I haven't done so yet. You can possibly pin liquidsoap to 1.1.1 using opam

[Savonet-users] [savonet/liquidsoap] Wrong FSF Address in headers (#679)

2018-12-23 Thread Lucas Bickel
**Describe the bug** I'm looking into packaging liquidsoap for Fedora and the package linter is complaining about wrong wrong FSF addresses in the source code. Fedora considers it a bug if the wrong address is give in any packaged files. They also expect packagers to report this to upstream.

Re: [Savonet-users] [savonet/liquidsoap] URGENT autodj stop centovacast (#678)

2018-12-23 Thread Lucas Bickel
It seems to look like Centovacast supports 1.3.3 out of the box in their latest (testing?) release (v3.2.11.20181108.stable-528r4125) as per [this forum post](https://centova.com/forums/index.php?topic=3981.msg13768#msg13768). What versions of both Centovacast and Liquidsoap are you currently

Re: [Savonet-users] [savonet/liquidsoap] can someone help me with my script (#674)

2018-12-12 Thread Lucas Bickel
The [liquidsoap-daemon](https://github.com/savonet/liquidsoap-daemon) repo should get you started. -- You are receiving this because you commented. Reply to this email directly or view it on GitHub:

Re: [Savonet-users] [savonet/liquidsoap] can someone help me with my script (#674)

2018-12-11 Thread Lucas Bickel
``` local_playlist = playlist("/home/pi/Musique/", mode="random", reload=300) ``` I just realized, the `mode` argument to `playlist` should be a string. -- You are receiving this because you commented. Reply to this email directly or view it on GitHub:

Re: [Savonet-users] [savonet/liquidsoap] can someone help me with my script (#674)

2018-12-11 Thread Lucas Bickel
Probably this: ``` #!/usr/bin/liquidsoap local_playlist = playlist("/home/pi/Musique/", mode=random, reload=300) stream_rfi = input.http("http://live02.rfi.fr/rfimonde96k.mp3;, id="stream_rfi_ok") live = input.http("http://orleans.radiocampus.org:8000/stream_rco_live.mp3;, id="live_ok")

[Savonet-users] [savonet/liquidsoap] Make embed links protocol-relative (#670)

2018-12-03 Thread Lucas Bickel
Fixes #669 You can view, comment on, or merge this pull request online at: https://github.com/savonet/liquidsoap/pull/670 -- Commit Summary -- * :memo: make embed links protocol-relative -- File Changes -- M doc/content/on2.txt (2) M doc/content/video.txt (6) -- Patch Links --

Re: [Savonet-users] [savonet/liquidsoap] Youtube videos are not displayed on the video documentation (#669)

2018-12-03 Thread Lucas Bickel
See #670 -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/savonet/liquidsoap/issues/669#issuecomment-443877470___ Savonet-users mailing list

Re: [Savonet-users] [savonet/liquidsoap] Youtube videos are not displayed on the video documentation (#669)

2018-12-03 Thread Lucas Bickel
They could be made protocol-relative: `src="//www.youtube.com...`. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [Savonet-users] [savonet/liquidsoap] [Suggestion] RTMP Input / Server (#634)

2018-10-06 Thread Lucas Bickel
This might also make AES67 possible, RTMP is just a transport and liquidsoap would still need to support the underlying codecs though. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

[Savonet-users] [savonet/liquidsoap] :lipstick: Remove unused Dtools open (#617)

2018-08-28 Thread Lucas Bickel
This is a purely cosmetic change to get rid of the "unused open Dtools." warning i saw fly by during a compile. You can view, comment on, or merge this pull request online at: https://github.com/savonet/liquidsoap/pull/617 -- Commit Summary -- * :lipstick: Remove unused Dtools open --