[Savonet-users] output.icecast.vorbis

2009-01-08 Thread Romeo
Hi Savonet Team! I have a little question about output.icecast.vorbis function is there any way to dynamically update stream description? -- Check out the new SourceForge.net Marketplace. It is the best place to buy or

Re: [Savonet-users] Liquidsoap produces no sound at outputs

2009-01-22 Thread Romeo
Hi, David > Ok so silence is streamed, with metadata. I don't think that it's an encoding > problem because it's on both vorbis and mp3 outputs, and I can't imagine > that it's a libshout problem. As you say, it could be a bad design of the > transition that leaves some silence instead of the new

Re: [Savonet-users] Liquidsoap produces no sound at outputs

2009-01-22 Thread Romeo
22.01.09, 21:04, "Romain Beauxis" : Got the same thing tonigth. only metadata is streaming out. unfortunatelly at this time i couldn't trace why this happened again. -- This SF.net email is sponsored by: SourcForge Commu

Re: [Savonet-users] Liquidsoap produces no sound at outputs

2009-01-24 Thread Romeo
24.01.09, 11:31, "Romain Beauxis" : > Le Saturday 24 January 2009 07:46:31 Romeo, vous avez écrit : > > when harbor starts liquidsoap transits on playlist for a sec, then to a > > harbor source. everything is ok then. playlist continues to play after > > harbo

[Savonet-users] predefine function

2009-03-27 Thread Romeo
Hi, Savonet Team! i have a question about liqudsoap scripting language. is there any way to predefine a function or a variable? something like i can do in C header files? --

[Savonet-users] shoutcast metadata via http.input

2009-03-27 Thread Romeo
Hi, Savonet Team! Is it possible to relay shoutcast streams with metadata using liquidsoap 0.9.0? -- ___ Savonet-users mailing list Savonet-users@lists.sourceforge.net https://l

[Savonet-users] Fwd: predefine function

2009-03-27 Thread Romeo
d foo(){ . . . } > Hi Romeo, > > On Fri, Mar 27, 2009 at 7:39 PM, Romeo wrote: > > is there any way to predefine a function or a variable? > > something like i can do in C header files? > > If I understood correctly your question, yes: liquidsoap is a > programm

[Savonet-users] liquidsoap startup and reloading

2009-03-27 Thread Romeo
It seems like liquidsoap doesn't create a pid file even if this option is set in configuration script. so it doesn't restart channels when launching "invoke-rc.d liquidsoap force-reload", and doesn't stop channels when launching "invoke-rc.d liquidsoap stop" i need to kill every instance of liq

[Savonet-users] segfault with external Encoder

2009-03-29 Thread Romeo
Hi, Savonet Team! tonight i got segfault with liquidsoap external.encoder. i used def out_aacplus(mount, name, s, bitrate) = def process(_) = "aacplusenc - - #{bitrate}" end output.icecast.external(mount=mount,header=true, host="localhost",port=8000,password=omegaRelayPasswd, de

Re: [Savonet-users] predefine function

2009-03-30 Thread Romeo
yes, it helped! i added if [ ! -e $rundir ]; then mkdir -m 777 $rundir fi into rc Script - it didn't helped, and then set("init.daemon.pidfile.path","/var/run/liquidsoap/

Re: [Savonet-users] liquidsoap startup and reloading

2009-03-30 Thread Romeo
yes, it helped! i added if [ ! -e $rundir ]; then mkdir -m 777 $rundir fi into rc Script - it didn't helped, and then set("init.daemon.pidfile.path","/var/run/liquidsoap/

Re: [Savonet-users] liquidsoap doesn't release mount points

2009-03-31 Thread Romeo
yes, the network works fine. as you can see in the log, the clients tries to connect via the same network connection but it seems like liquidsoap thinks that client is still connected to it > Hi ! > > Le Tuesday 31 March 2009 12:50:10 Romeo, vous avez écrit : > > i hope you ca

Re: [Savonet-users] liquidsoap doesn't release mount points

2009-04-01 Thread Romeo
I've looked through code and mentioned some things that may cause this issue. in http://savonet.rastageeks.org/browser/trunk/liquidsoap/src/sources/harbor_input.ml?rev=head 100 let () = 101 let rec wait n = 102 let l,_,_ = Unix.select [socket] [] [] 1. in 103

Re: [Savonet-users] liquidsoap doesn't release mount points

2009-04-01 Thread Romeo
end ; 106 end 107 in wait 1 108 in can you check is it correct code? is disconnect method enough to reinit harbor.input, or something else must be done? 31.03.09, 23:37, "Romain Beauxis" : > Hi ! > Le Tuesday 31 March 2009 12:50:10

Re: [Savonet-users] liquidsoap doesn't release mount points

2009-04-01 Thread Romeo
[ogg.demuxer:4] Found a ogg logical stream, serial: d24bc 2009/04/01 21:04:26 [ogg.demuxer:4] Trying ogg/vorbis format 2009/04/01 21:04:26 [playlist:3] New metadata chunk "RadioVKontakte.ru -- ?" 2009/04/01 21:04:36 [mainFallback:3] Switch to playlist with forgetful transition.

[Savonet-users] Output AAC

2009-04-03 Thread Romeo
Hi, Savonet Team! is it possible to steam AAC to icecast using internal liquidsoap encoder? i mentioned that you have output.file.aac operator, but not output.icecast.aac -- __

[Savonet-users] some questions about formats

2009-04-04 Thread Romeo
Hi, Savonet Team! is there any way to stream data from liquidsoap to flashplayer via icecast? which codec i must use for this task? i tried aacplusenc, but this format seems to be not supported by flashplayer. but on the other hand, adobe promises this format to be supported. http://www.adobe.

Re: [Savonet-users] some questions about formats

2009-04-05 Thread Romeo
i had some experiments with flash+mp3 stream. this approach has some issues: first is browser crash after long playback time and the second is bandwith limitation: to get acceptable quality we need faster streams... aac+ stream is preferrable in this case as it uses native NetworkStream Action S

[Savonet-users] Thank You

2009-04-05 Thread Romeo
Hi, Savonet Team! Thank You for adding a possibility to specify a mime type at output.external operator !!! -- ___ Savonet-users mailing list Savonet-users@lists.sourceforge.ne

[Savonet-users] outputs doesn't restart sometimes

2009-04-07 Thread Romeo
Hi, Savonet Team! I've noticed that in some case Liquidsoap doesn't restart icecast outputs. this occurs when restarting icecast: 2009/04/06 18:50:44 [threads:1] Thread "root" aborts with exception Sys_error("Connection reset by peer")! and after that liquidsoap stops in a normal way ---

[Savonet-users] include usage

2009-05-14 Thread Romeo
Hi, Savonet Team! is there a proper way to use includes? if i write %include "/path/to/script.liq" liquidsoap says something about unbound symbols. if script.liq is empty, it points on %include line, otherwise it points to the last symbol of script.liq i want to write some common definitions i

Re: [Savonet-users] include usage

2009-05-14 Thread Romeo
2009/5/14 Romeo > Hi, Savonet Team! > > is there a proper way to use includes? > > if i write > > %include "/path/to/script.liq" > > liquidsoap says something about unbound symbols. if script.liq is empty, it > points on %include line, otherwise it points

Re: [Savonet-users] include usage

2009-05-14 Thread Romeo
okay, but i put %include at the very begining of the file and i got this issue. maybe %include waits some other definitions after it, and if it doesn't find it then it fails 2009/5/14 David Baelde > For the record, I saw the files and figured the problem: there is a > syntax error if the %includ

Re: [Savonet-users] include usage

2009-05-23 Thread Romeo
Hi, David! i figured out problematic case: if included file ends with comment and there is no '\n' at the end of file, say something like a=1 b=5 ###EOF then i got this error, otherwise, everything goes ok. a=1 b=5 ###\n EOF this runs ok. 2009/5/15 David Baelde

[Savonet-users] Metadata update according with live show info

2009-06-07 Thread Romeo
Hi, Savonet Team! is it possible to update stream metadata using input.harbor headers? i suggest i must do it this way, but it doesn't work. i get blank title instead. <> meta = [] # <- is it correct ??? def liveStart(headers) log("[LIVE-START]: live source goes up! Switching from

Re: [Savonet-users] Metadata update according with live show info

2009-06-08 Thread Romeo
Thank You for your answer! i tried as you adviced and everything worked! but you have a syntax error in this line ignore(server.execute("liveMeta.insert title=\"#{title}\")) it must be ignore(server.execute("liveMeta.insert title=\"#{title}\"")) Thank You!

[Savonet-users] Unclean external Encoder restart/shutdown

2009-08-02 Thread Romeo
Hi, Savonet Team! Sometimes i have the following issues: aacplusenc restarts and shuts down uncleanly in the logs i see the following: 2009/08/02 23:42:34 [threads:3] Thread "harbor source feeding" exited (1 remaining). 2009/08/02 23:42:37 [source:4] CrossfadeAddSeqBlank gets down 2009/08/02 23:4

[Savonet-users] Liquidsoap streams "in past time" after using 2 harbor sources at once

2009-08-02 Thread Romeo
Hi, Savonet Team! I have 2 harbor sources that can be used together. one for external playlist stream generator, another for live performances. this 2 sources joins into one source using swhitch operator. it is very useful for me, as i can make transitions between live and playlist, and if live d

Re: [Savonet-users] Unclean external Encoder restart/shutdown

2009-08-11 Thread Romeo
i use the default value for restart delay, and it works fine, but log contains this long sequences of [stderr:3] [xxx%] which consumes a lot of space in the logs 2009/8/11 Romain Beauxis > Le dimanche 2 août 2009 18:38:36, Romeo a écrit : > > Hi, Savonet Team! > >Hi !

Re: [Savonet-users] Liquidsoap streams "in past time" after using 2 harbor sources at once

2009-08-17 Thread Romeo
some past track begins. it seems that really about 30-40 minutes of data is buffered, and this happens every time 2 harbors are active. this was noticed and reported by many listeners 2009/8/15 David Baelde > Hi Romeo, > > I'm not completely sure to fully understand your des

Re: [Savonet-users] Liquidsoap streams "in past time" after using 2 harbor sources at once

2009-08-22 Thread Romeo
o use this feature. p.s. harbor issue is already commited into trac system as a bug. 2009/8/22 David Baelde > Hey, > > 2009/8/18 Romeo : > > yes, it's really a past track played, but not completely. only some > seconds > > of it. > > Okay, here is what hap

[Savonet-users] log rotation

2009-09-29 Thread Romeo
Hi! Can i use logrotate tool to rotate liquisoap log, or it has internal capabilities to do this stuff? -- Best Regards. Romeo. -- Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer

[Savonet-users] liquidsoap libaacplus

2009-09-29 Thread Romeo
Hi Savonet Team! i'm trying to make work 0.9.1+svn with ocaml-aacplus but get error when starting liquidsoap. it says it cannot load libaacplus.so.1 but it exists in /usr/local/lib/ i use this <http://tipok.org.ua/node/17> library (libaacplus) -- Best Reg

[Savonet-users] unable to compile

2009-10-04 Thread Romeo
hine) everythig goes without errors any suggestions on what it can be? -- Best Regards. Romeo. -- Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this

Re: [Savonet-users] unable to compile

2009-10-04 Thread Romeo
I have found the solution! it was just removing liblastfm-ocaml-dev package. Thanks to Romain! ( http://www.mail-archive.com/savonet-users@lists.sourceforge.net/msg01633.html ) 2009/10/5 Romeo > Hi Savonet Team! > > i'm trying to make latest revision of liquidsoap with OCaml

[Savonet-users] DNS Lookups

2009-10-05 Thread Romeo
Hi, Savonet Team!! is it possible to disable reverse dns lookups in liquidsoap log? some DJs are experiencing problems with long connection to liquidsoap's harbor source. i suppose this goes out of reverse DNS lookups. -- Best Regards.

Re: [Savonet-users] DNS Lookups

2009-10-06 Thread Romeo
Hi David! Thank you for the patch! we'll try it today! 2009/10/5 David Baelde > Hi Romeo, > > Here is a patch that forcibly desactivates reverse DNS lookups. If > that really helps you (and it could) we should consider making this > optional. > >

Re: [Savonet-users] DNS Lookups

2009-10-06 Thread Romeo
) first - about 1 second third and fourth - immediate 2009/10/6 Romeo > Hi David! > > Thank you for the patch! we'll try it today! > > 2009/10/5 David Baelde > > Hi Romeo, >> >> Here is a patch that forcibly desactivates reverse DNS lookups. If >> th

Re: [Savonet-users] DNS Lookups

2009-10-07 Thread Romeo
> > Cheers, > > David > -- Best Regards. Romeo. -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills,

[Savonet-users] Unable to build [6824]

2009-10-17 Thread Romeo
tart:(unit -> unit) -> on_stop:(unit -> unit) -> Output.output make[3]: *** [outputs/sdl_out.cmx] Error 2 after installing fftw3-dev and libaacplus i can't understand where it goes from as this file was't modified last 6 months and i've succ

Re: [Savonet-users] Unable to build [6824]

2009-10-18 Thread Romeo
Thank you! disabling sdl solved this issue! -- Best Regards. Romeo. -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your