Hi Daniele, The safe_blank source is inside mksafe(). The operator switches to that blank source when your source has nothing to send. The stuff about transitions can be ignored here.
So essentially, all this is saying is that your http input has failed to provide a stream. Here it looks like it's not caused by a permanent disconnection but rather but a network lag causing the internal buffer to empty. Disconnections would be logged, but the buffer underrun is only logged at level 4 (debug). Hope this helps, David On Wed, Jul 3, 2013 at 1:12 AM, Daniele <[email protected]> wrote: > hi all, i have liquid soap working for a month but in this week i have a > problem, the stream have 2 o 3 times in a song silent hole (2 second) > > this is my code (stripped): > > > autodj = mksafe(input.http("ip:port/source)) > > live = input.external("while true; do mplayer -really-quiet -ao > pcm:file=/dev/stdout -vc null -vo null > rtsp://8x.xx.xxxx.xx/live/diretta2>/dev/null; sleep 1; done") > > radio = fallback(track_sensitive=false,[live,autodj]) > > output.icecast(………. > > in the log file i have this: > > 2013/07/02 23:57:42 [mksafe:3] Switch to http_4916 with transition. > 2013/07/02 23:57:50 [http_4916:3] New metadata chunk: ? -- Phillip Phillips > - Gone, Gone, Gone. > 2013/07/03 00:01:18 [http_4916:3] New metadata chunk: ? -- Will I Am Feat > Britney Spears - Scream And Shout. > 2013/07/03 00:01:27 [mksafe:3] Switch to safe_blank with forgetful > transition. > 2013/07/03 00:01:29 [mksafe:3] Switch to http_4916 with transition. > 2013/07/03 00:02:43 [mksafe:3] Switch to safe_blank with forgetful > transition. > 2013/07/03 00:02:45 [mksafe:3] Switch to http_4916 with transition. > 2013/07/03 00:05:58 [http_4916:3] New metadata chunk: ? -- Bon Jovi - Wanted > Dead Or Alive (Single Version). > 2013/07/03 00:06:30 [mksafe:3] Switch to safe_blank with forgetful > transition. > 2013/07/03 00:06:33 [mksafe:3] Switch to http_4916 with transition. > 2013/07/03 00:08:07 [mksafe:3] Switch to safe_blank with forgetful > transition. > 2013/07/03 00:08:09 [mksafe:3] Switch to http_4916 with transition. > 2013/07/03 00:10:02 [http_4916:3] New metadata chunk: ? -- Lykke Li - I > Follow Rivers. > > i think the trouble is on mksafe(input.http()), i don't understand why > theres th transition to safe_blank.. Any suggestions? > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by Windows: > > Build for Windows Store. > > http://p.sf.net/sfu/windows-dev2dev > _______________________________________________ > Savonet-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/savonet-users > -- David ------------------------------------------------------------------------------ This SF.net email is sponsored by Windows: Build for Windows Store. http://p.sf.net/sfu/windows-dev2dev _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
