1
0
Fork 0
livestream-tools/icedreammusic/liquidsoap/silent_fallback.liq

7 lines
405 B
Plaintext
Raw Normal View History

2021-02-28 17:04:41 +00:00
# Silent fallback stream that is still loud enough that it forces Vorbis/OPUS codecs to continue broadcasting data.
# Some Icecast-compatible software on the server-side tends to freak out over us not sending data for extended amount of times, for example during technical difficulties.
def mksafe_soft(s) =
2021-03-07 21:22:07 +00:00
silent_a = amplify(0.000075, noise())
fallback(track_sensitive=false, [s, silent_a])
2021-02-28 17:04:41 +00:00
end