streamscapes/archive.liq

16 lines
420 B
Plaintext
Executable File

#!/usr/bin/liquidsoap -d
#################################################
# rc-web@kiben.net 2012
# Dump the local source stream to uncompressed .wav archive
output.file(
%wav(stereo=true,samplerate=48000),
"../audio_archive/dublin-%Y-%m-%d/cc-%Y-%m-%d-%H_%M_%S.wav",
on_close=fun(s)->system("qwavheaderdump -F #{s}"),
reopen_when={0m0s},
full
)
#################################################