Hi Romain

The truth is that it seems that everything is working well, that's why I am
surprised by that warning in the log.
I stop worrying then.
Thanks for everything. Regards.

Franjofer

El mar, 18 may 2021 a las 20:15, Romain Beauxis (<romain.beau...@gmail.com>)
escribió:

> Ola!
>
> This log may not be related to a problem, just information. Do you have
> any issues with your script?
>
> Romain
>
> Le lun. 17 mai 2021 à 14:20, Francisco Oliver <franjo...@gmail.com> a
> écrit :
>
>> Hola, cada vez que activo crossfade me sale este aviso en el log. ¿Hay
>> alguna solucion para ello? He leido la documentacion pero no me queda claro
>> como hacerlo.
>> Gracias de antemano.
>>
>> Google Translator:
>>
>> Hello, every time I activate crossfade I get this warning in the log. Is
>> there a solution for it? I have read the documentation but it is not clear
>> to me how to do it.
>> Thanks in advance.
>>
>> My script:
>>
>> #!/path to liquidsoap
>>
>> # Incluir scripts externos
>> %include "putoscripts.liq"
>>
>> # Activar archivo log
>> set("log.file",false)
>> set("log.file.path","/path to putorock.log")
>> # Activar log en consola
>> set("log.stdout",true)
>> set("log.level",4)
>>
>> # Activar comandos telnet
>> #set("server.telnet",true)
>>
>> # Activar color en la salida de consola (allways, never o auto):
>> set("console.colorize","allways")
>>
>> # Editar lista de metadatos exportados
>>
>> #set("encoder.encoder.export",["artist","title","album","genre","date","tracknumber","comment","track","year","dj","next"])
>>
>> # Definir Replay_gain path
>> set("protocol.replay_gain.path","/path to extract-replaygain")
>>
>> # Activar extractor de etiquetas replaygain_metadata
>> #enable_replaygain_metadata()
>>
>> # Definir security, clock y jingles
>> security = single("/path to security.mp3")
>> clock = single("/path to clock.mp3")
>> #jingles = playlist("/path to 00-jingles")
>>
>> # Definir sources: normal, con nrj o con protocolo replay_gain
>> #putoall = playlist("/path to 00-music")
>> #putoall = nrj(playlist("/path to 00-music"))
>> putorock = playlist("/path to 00-rock", prefix="replay_gain:")
>> putometal = playlist("/path to 00-metal", prefix="replay_gain:")
>> putoldies = playlist("/path to 00-oldies", prefix="replay_gain:")
>>
>> # Definir salida de putos
>> putos = switch([({ 6h-16h }, putorock), ({ 16h-00h }, putorock), ({
>> 00h-6h }, putoldies)])
>> putos = amplify(1., override="replay_gain", putos)
>> putos = normalize(putos)
>> # Activar crossfade o smart_crossfade
>> putos = crossfade(duration=5., fade_in=3., fade_out=3., smart=true,
>> width=2., conservative=true, putos)
>>
>> # Definir salida de radio
>> radio = fallback(track_sensitive = false, [putos, security])
>>
>> # Añadir clock y jingles
>> #radio = add([radio, switch([({0m0s},clock)])])
>> #radio = random(weights = [1, 4],[jingles, putos])
>>
>> # Definir los datos del stream
>> output.icecast(%mp3.cbr(samplerate=44100, bitrate=192),
>>   host = "localhost", port = 8000,
>>   password = "xxxxx", mount = "rock",
>>   name="Radio PutoRock", description="Lo mejor del Rock",
>>   radio)
>>
>> My log:
>>
>> 2021/05/17 21:15:06 [source:4] Source buffer_9529 gets up.
>> 2021/05/17 21:15:06 [buffer_9529:4] Content kind is
>> {audio=2;video=0;midi=0}.
>> 2021/05/17 21:15:06 [buffer_9529:4] Activations changed:
>> static=[cross_7373_after:sequence_9609:cross_7373], dynamic=[].
>> 2021/05/17 21:15:06 [cross_7373_after:4] Activations changed:
>> static=[sequence_9609:cross_7373], dynamic=[].
>> 2021/05/17 21:15:06 [sequence_9609:4] Activations changed: static=[],
>> dynamic=[cross_7373].
>> 2021/05/17 21:15:06 [sequence_9609:4] Activations changed: static=[],
>> dynamic=[cross_7373, cross_7373].
>> 2021/05/17 21:15:11 [buffer_9527:4] End of track.
>> 2021/05/17 21:15:11 [buffer_9527:4] Buffer emptied, buffering needed.
>> 2021/05/17 21:15:16 [buffer_9529:4] Buffer emptied, buffering needed.
>> 2021/05/17 21:15:16 [sequence_9609:4] Activations changed: static=[],
>> dynamic=[cross_7373].
>> 2021/05/17 21:15:16 [cross_7373:4] Buffering end of track...
>> 2021/05/17 21:15:16 [cross_7373:4] More buffering will be needed.
>> _______________________________________________
>> Savonet-users mailing list
>> Savonet-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/savonet-users
>>
> _______________________________________________
> Savonet-users mailing list
> Savonet-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/savonet-users
>
_______________________________________________
Savonet-users mailing list
Savonet-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to