Re: [Savonet-users] [savonet/liquidsoap] Remove character from Metatag (#615)

2018-08-27 Thread preterive
Line 24, char 6 before "end": Parse 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] Remove character from Metatag (#615)

2018-08-27 Thread preterive
Thanks, it don't work but now i edit them. -- 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] Remove character from Metatag (#615)

2018-08-27 Thread preterive
Both examples don't work. i simple change s to source3. -- 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] Input ; (#616)

2018-08-27 Thread preterive
Hello, i use the input of another icecast Stream and rebroadcast it. Now, i can't use ";" if i use it, liqudisoap only send the Text before the ; . -- 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] Liquidsoap freezes on a complex script (#609)

2018-08-27 Thread Romain Beauxis
![giphy 1](https://user-images.githubusercontent.com/871060/44698132-5546c700-aa44-11e8-820c-ce7d27abb45c.gif) -- 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] Empty output comes after few minutes of encoding (#339)

2018-08-27 Thread mylselgan
currently I have tested it with Liquidsoap 1.3.3 (installed via opam) ocaml-gstreamer-0.2.3 my current code is emergency = single("/home/radio/liquidsoap-daemon/media/5-minutes.mp3") gst = mksafe(input.gstreamer.audio(pipeline="uridecodebin uri=http://any mms or m3u8 or shoutcast url")) gst =

Re: [Savonet-users] [savonet/liquidsoap] Remove character from Metatag (#615)

2018-08-27 Thread Gilou
paste your full script so we can help... and opening another issue for this is quite rude in my opinion... -- 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] Empty output comes after few minutes of encoding (#339)

2018-08-27 Thread Romain Beauxis
In particular, the gstreamer code has been reworked extensively. It might still need some work, tho. I would suggest to start by getting rid of the adaptative buffer and let the gstreamer input drive the whole streaming clock. -- You are receiving this because you are subscribed to this

Re: [Savonet-users] [savonet/liquidsoap] How to stream desktop (#613)

2018-08-27 Thread Gilou
For audio, if you can hook liq to the monitor it might be possible maybe with portaudio (try in() as well). For video, that'll require more work as liq can't handle the capture afaik. Something like [OBS project ](https://obsproject.com/) might be interesting to you rather than liq. You might

Re: [Savonet-users] [savonet/liquidsoap] Liquidsoap freezes on a complex script (#609)

2018-08-27 Thread Gilou
 10 hours uptime mark! I'll let it run a bit more before opening the champagne, and add a bit more complexity I removed to debunk this. I'll avoid adding cue_cut or other extreme gapless playout ideas I have in mind before the release (and I'll see how I can help with docs as well)... -- You

Re: [Savonet-users] [savonet/liquidsoap] Empty output comes after few minutes of encoding (#339)

2018-08-27 Thread Romain Beauxis
Hi @mylselgan. Any chance you'd be able to test the latest code? There's been a lot of bugfixes there lately.. -- 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-27 Thread Gilou
You probably need to install cry as well -- 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] Liquidsoap freezes on a complex script (#609)

2018-08-27 Thread Gilou
Will restart testing on latest code, namely with e10e047 -- 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] Remove characer from Metatag (#615)

2018-08-27 Thread preterive
Hello, i search a way to remove the ; from the meta tag, because my streaming software don't support this character. -- 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] Liquidsoap freezes on a complex script (#609)

2018-08-27 Thread Romain Beauxis
Great idea. Your stack trace was helpful too and seems to point to a different direction but this is worth trying. 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] Remove character from Metatag (#615)

2018-08-27 Thread Romain Beauxis
Hi, You should be able to achieve that by using the `map_metadata` operator. It is described here: 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] Remove character from Metatag (#615)

2018-08-27 Thread Romain Beauxis
Closed #615. -- 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/615#event-1811085136-- Check out the

Re: [Savonet-users] [savonet/liquidsoap] Remove character from Metatag (#615)

2018-08-27 Thread preterive
I already test it: ``` At line 17, char 17-43: This term would evaluate to a (passive) source which would then be dropped. This is usually the sign of a misunderstanding: only active sources are animated on their own; dangling passive sources are just dead code. ``` could you give a more

Re: [Savonet-users] [savonet/liquidsoap] Remove character from Metatag (#615)

2018-08-27 Thread Romain Beauxis
You can try this: ``` def remove_colon(m) = def f(pair) = lbl = fst(pair) val = snd(pair) replace = fun (_) -> "" (lbl,string.replace(pattern=":",replace,lbl) end list.map(f,m) end s = map_metadata(remove_colon,s) ``` (Code untried) You could also be more specific by only