Re: [Savonet-users] [savonet/liquidsoap] Ubuntu / Debian 1.3.3 unstable - fdkaac - No encoder found for that format (#598)

2018-08-15 Thread Kyle Robbertze
Unfortunately the fdk-aac encoder is licenced under a non-free license and thus is in the Debian non-free repo (https://tracker.debian.org/pkg/fdk-aac). As such, I can't include it in the liquidsoap package without placing liquidsoap in contrib. As I prefer to keep liquidsoap in main, fdk-aac

Re: [Savonet-users] [savonet/liquidsoap] Ubuntu / Debian 1.3.3 unstable - fdkaac - No encoder found for that format (#598)

2018-08-15 Thread Romain Beauxis
I haven't tested it in a while but the `libfdkaac-ocaml-dynlink` should actually provide a dynamically loaded `fdk-aac` encoder for `liquidsoap`. As far as I can remember it was designed so that just installing it would enable the encoder in liquidsoap. Anyone care to test and report? Thks! --

Re: [Savonet-users] [savonet/liquidsoap] Ubuntu / Debian 1.3.3 unstable - fdkaac - No encoder found for that format (#598)

2018-08-15 Thread Romain Beauxis
Alright. Will fire a docker image and see what I can do! -- 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] input.https invalid URL (#593)

2018-08-15 Thread Romain Beauxis
Ok, thanks. Anything that we should fix on our end? -- 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] Audio stream becomes blank (#572)

2018-08-15 Thread Niall Lindsay
Il check on my ubuntu system -- 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] Falls stream, with the process still running (#596)

2018-08-15 Thread Andrey Kondalov
Ok. -- 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/596#issuecomment-413208321-- Check out the vibrant

Re: [Savonet-users] [savonet/liquidsoap] Audio stream becomes blank (#572)

2018-08-15 Thread Romain Beauxis
Closed #572. -- 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/572#event-1790109662-- Check out the

Re: [Savonet-users] [savonet/liquidsoap] Audio stream becomes blank (#572)

2018-08-15 Thread Romain Beauxis
@Niall7459, I'm gonna close this one here for house keeping. I am focused on issues on the recent code and this one hasn't been reported since `1.1.1`. However, feel free to re-open or submit a new one if you experience it with the latest code. Thks! -- You are receiving this because you are

Re: [Savonet-users] [savonet/liquidsoap] Falls stream, with the process still running (#596)

2018-08-15 Thread Romain Beauxis
Well at least now we won't have to wait 8h each time ;-) Can you send a full log of the transition? Thks! -- 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] Falls stream, with the process still running (#596)

2018-08-15 Thread Andrey Kondalov
Maybe you need to add more logs in the crossfade statement? -- 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] Falls stream, with the process still running (#596)

2018-08-15 Thread Romain Beauxis
Shoot my bad I forgot one step in the install instructions. Let me try again: ``` git clone g...@github.com:savonet/liquidsoap.git cd liquidsoap git checkout smartcross-cleanup opam pin add . ``` -- You are receiving this because you are subscribed to this thread. Reply to this email directly or

[Savonet-users] [savonet/liquidsoap] Smartcross cleanup. (#599)

2018-08-15 Thread Romain Beauxis
Avoid building a stack of `sequence` sources, be more agressive when keeping last metadata, general code cleanup. You can view, comment on, or merge this pull request online at: https://github.com/savonet/liquidsoap/pull/599 -- Commit Summary -- * Smartcross cleanup. -- File Changes --

Re: [Savonet-users] [savonet/liquidsoap] Audio stream becomes blank (#572)

2018-08-15 Thread Romain Beauxis
Oh also, thanks for the kind words, much appreciated! -- 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] input.https invalid URL (#593)

2018-08-15 Thread Romain Beauxis
Closed #593. -- 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/593#event-1790126425-- Check out the

Re: [Savonet-users] [savonet/liquidsoap] input.https invalid URL (#593)

2018-08-15 Thread Romain Beauxis
You need to enable SSL support for `https` to work. If installing via `opam` just do: ``` opam install ssl ``` Alternatively on OSX: ``` opam install osx-secure-transport ``` -- 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] Falls stream, with the process still running (#596)

2018-08-15 Thread Andrey Kondalov
@toots The last build does not start the stream at all. ``` 2018/08/15 16:56:26 >>> LOG START 2018/08/15 16:56:26 [main:3] Liquidsoap 1.3.3+scm 2018/08/15 16:56:26 [main:3] Using: bytes=[distributed with OCaml 4.02 or above] pcre=7.3.4 dtools=0.4.0 duppy=0.7.1 duppy.syntax=0.7.1 cry=0.6.1

Re: [Savonet-users] [savonet/liquidsoap] input.https invalid URL (#593)

2018-08-15 Thread Leon
http_source.ml line 147 url regex, `\\([Hh][Tt][Tt][Pp]\|[Hh][Tt][Tt][Pp][Ss]\\)` ``` (Str.matched_group 2 url), (try Str.matched_group 3 url with Not_found -> "/") ``` This is my fix, it was found in emergency for my radio, i think that can be better, compact. -- You are

Re: [Savonet-users] [savonet/liquidsoap] Audio stream becomes blank (#572)

2018-08-15 Thread Andrey Kondalov
https://github.com/savonet/liquidsoap/issues/572#issuecomment-413228714 @Niall7459 You need to use opam to install the latest version. Or manually collect from the repository. https://opam.ocaml.org/ https://opam.ocaml.org/packages/liquidsoap/ -- You are receiving this because you are

Re: [Savonet-users] [savonet/liquidsoap] Ubuntu / Debian 1.3.3 unstable - fdkaac - No encoder found for that format (#598)

2018-08-15 Thread Thomas Zumbrunnen
I've tested this approach. Just installed `libfdkaac-ocaml-dynlink` and `fdk-aac` and get the same error. -- 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] input.https invalid URL (#593)

2018-08-15 Thread Romain Beauxis
Reopened #593. -- 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/593#event-1790410627-- Check out the

Re: [Savonet-users] [savonet/liquidsoap] input.https invalid URL (#593)

2018-08-15 Thread Romain Beauxis
Thanks. No idea how this slept through the cracks.. -- 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] input.https invalid URL (#593)

2018-08-15 Thread Romain Beauxis
Closed #593 via 00dfcd67c9e7be44e5c0a66f2e5ff425be79ba93. -- 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] Falls stream, with the process still running (#596)

2018-08-15 Thread Romain Beauxis
Hi! So, in the process of reviewing the `smartcross` code I actually ended up cleaning it in a way that changes the fundamentals of the algorithm and has a slight chance of fixing your issue. Would you mind trying it? It shouldn't be too hard to do: ``` git clone

Re: [Savonet-users] [savonet/liquidsoap] Falls stream, with the process still running (#596)

2018-08-15 Thread Andrey Kondalov
https://github.com/savonet/liquidsoap/issues/596#issuecomment-413218531 ``` 2018/08/15 16:25:32 [source:4] Garbage collected empty_15333. 2018/08/15 16:25:32 [source:4] Garbage collected add_15326. 2018/08/15 16:25:32 [source:4] Garbage collected smart_cross_5951_after. 2018/08/15 16:25:32

Re: [Savonet-users] [savonet/liquidsoap] Audio stream becomes blank (#572)

2018-08-15 Thread Niall Lindsay
nope, I can attempt a build but it probably wont work for me -- 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] Lack of documentation for smoothly changing volume using interactive float (#597)

2018-08-15 Thread Romain Beauxis
Whoops wrong issue sorry! -- 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/597#issuecomment-413212028--

Re: [Savonet-users] [savonet/liquidsoap] Lack of documentation for smoothly changing volume using interactive float (#597)

2018-08-15 Thread Romain Beauxis
http://www.liquidsoap.info/doc-1.3.3/metadata.html :-) -- 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] Lack of documentation for smoothly changing volume using interactive float (#597)

2018-08-15 Thread Romain Beauxis
Reopened #597. -- 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/597#event-1790120769-- Check out the

Re: [Savonet-users] [savonet/liquidsoap] Falls stream, with the process still running (#596)

2018-08-15 Thread Andrey Kondalov
@toots The result is the same. Stream fell quickly. ``` 2018/08/15 16:29:05 [buffer_15391:4] Activations changed: static=[], dynamic=[]. 2018/08/15 16:29:05 [source:4] Source buffer_15391 gets down. 2018/08/15 16:29:08 [smart_cross_5951_before:4] End of track. 2018/08/15 16:29:08

Re: [Savonet-users] [savonet/liquidsoap] Falls stream, with the process still running (#596)

2018-08-15 Thread Romain Beauxis
Looks like you're not running the latest code. This transition should not have been crossfaded with the recent changes because there isn't the same amount of buffer in `before` and `after`: ``` 2018/08/15 16:29:03 [smart_cross_5951:3] Analysis: -nandB / -24.291731dB (5.03s / 1.97s) ``` -- You

Re: [Savonet-users] [savonet/liquidsoap] Falls stream, with the process still running (#596)

2018-08-15 Thread Andrey Kondalov
Exactly. I did not notice a new branch. -- 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] Audio stream becomes blank (#572)

2018-08-15 Thread Niall Lindsay
@toots ![screen shot 2018-08-15 at 16 05 20](https://user-images.githubusercontent.com/9781846/44155471-4e4ebc8a-a0a5-11e8-96d5-bac4c26b682f.png) not yet on our lists :( -- 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] Lack of documentation for smoothly changing volume using interactive float (#597)

2018-08-15 Thread Romain Beauxis
Closed #597. -- 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/597#event-1790120356-- Check out the

Re: [Savonet-users] [savonet/liquidsoap] Is there a function to set metadata (#594)

2018-08-15 Thread Romain Beauxis
Closed #594. -- 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/594#event-1790121064-- Check out the

Re: [Savonet-users] [savonet/liquidsoap] Is there a function to set metadata (#594)

2018-08-15 Thread Romain Beauxis
http://www.liquidsoap.info/doc-1.3.3/metadata.html :-) -- 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] input.https invalid URL (#593)

2018-08-15 Thread Leon
It's installed, the regex was the problem (no https support), i fixed that. -- 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] Broken OGG Stream Created (#549)

2018-08-15 Thread Romain Beauxis
I can reproduce now. Also shown in `mplayer`. Will try to have a look at it. -- 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] Ubuntu / Debian 1.3.3 unstable - fdkaac - No encoder found for that format (#598)

2018-08-15 Thread Thomas Zumbrunnen
I just did some first tests with the new 1.3.3 unstable package. after the announcement in #398 ( kudos to @paddatrapper ) Using fdkaac as encoder gives me the "No encoder found for that format" message. Did I missed something during the installation or is this encoder removed for some reason I

Re: [Savonet-users] [savonet/liquidsoap] Dynamically loaded fdk-aac encoder doesn't work. (#598)

2018-08-15 Thread Romain Beauxis
No rebuild needed for `liquidsoap`. It will look into `/usr/lib/ocaml/fdkaac/` for the dynlink module. It's currently failing because the `ABI` is incompatible. -- 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] Dynamically loaded fdk-aac encoder doesn't work. (#598)

2018-08-15 Thread Kyle Robbertze
Ah ok cool. I shall update that in the next week or so then -- 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] Audio stream becomes blank (#572)

2018-08-15 Thread Niall Lindsay
@Yukioru I've installed 1.3.3-1 but when i run 'liquidsoap' its still running version 1.1.1 that I installed using apt. Has opam installed it somewhere different so I can make an alias to it. Thanks -- You are receiving this because you are subscribed to this thread. Reply to this email

Re: [Savonet-users] [savonet/liquidsoap] Dynamically loaded fdk-aac encoder doesn't work. (#598)

2018-08-15 Thread Romain Beauxis
So, it looks like the only thing that's missing to make it work is an update of `ocaml-fdkaac` in Debian. Once this is done, `liquidsoap` should be able to pick it up. Gonna close here, @paddatrapper feel free to re-open if that doesn't fix the issue. -- You are receiving this because you are

Re: [Savonet-users] [savonet/liquidsoap] Dynamically loaded fdk-aac encoder doesn't work. (#598)

2018-08-15 Thread Romain Beauxis
Closed #598. -- 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/598#event-1790675746-- Check out the

Re: [Savonet-users] [savonet/liquidsoap] Falls stream, with the process still running (#596)

2018-08-15 Thread Andrey Kondalov
4.06.0. There were some problems under 4.07.0, but I'll try again. -- 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] Falls stream, with the process still running (#596)

2018-08-15 Thread Romain Beauxis
Ok. I'm starting to believe that your issue has nothing to do with what we were looking for. If you get another hard freeze like that the next step would prolly be to look at it with `gdb`. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or

Re: [Savonet-users] [savonet/liquidsoap] Falls stream, with the process still running (#596)

2018-08-15 Thread Andrey Kondalov
@toots https://github.com/savonet/liquidsoap/issues/596#issuecomment-413263841 Sorry, I forgot to turn off Liquidsoap from the background. Has recompiled in 4.07.0. If it falls down, I'll tell you. We will move on. -- You are receiving this because you are subscribed to this thread. Reply to

Re: [Savonet-users] [savonet/liquidsoap] Audio stream becomes blank (#572)

2018-08-15 Thread Andrey Kondalov
@Niall7459 The installed liquidsoap through the opam is in the home directory. For example: `/home/username/.opam/bin/liquidsoap` or `/home/username/.opam/4.05.0/bin/liquidsoap` -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on

Re: [Savonet-users] [savonet/liquidsoap] Audio stream becomes blank (#572)

2018-08-15 Thread Niall Lindsay
@Yukioru Thanks, It's there but... ![screen shot 2018-08-15 at 17 59 19](https://user-images.githubusercontent.com/9781846/44161386-0e0c1e00-a0b5-11e8-977e-418eb83c5d97.png) I have to use ./liquidsoap or it runs from command and not binary -- You are receiving this because you are subscribed

Re: [Savonet-users] [savonet/liquidsoap] Falls stream, with the process still running (#596)

2018-08-15 Thread Romain Beauxis
Wow. I have no idea what could cause that. What version of OCaml are you using to build? I'd suggest switch to the latest, `4.07.0`.. -- 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] Dynamically loaded fdk-aac encoder doesn't work. (#598)

2018-08-15 Thread Kyle Robbertze
@toots - does `liquidsoap` need rebuilding with some option/dependency to use `libfdkaac-ocaml-dynlink` or does `ocaml-fdkaac` (updating and moved to contrib) sort that out automatically? -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view

[Savonet-users] smooth_add problem ?

2018-08-15 Thread Per Gunnarsson via Savonet-users
Hello! I was trying to mix four streams, two video and two audio streams into one which was sent to facebook. The video streams I got working, but the mixed audio stream doesn't seem to work. Only the pulseaudio input shows up on my facebook preview of the stream. I have tried with a playlist