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

31 lines
626 B
Plaintext
Raw Normal View History

2021-02-28 17:04:41 +00:00
set("log.stdout", true)
set("log.file", false)
set("log.level", 4)
set("server.telnet", true)
set("server.telnet.bind_addr", "127.0.0.1")
set("server.telnet.port", 21337)
set("init.allow_root",true)
set("frame.video.width", 1920)
set("frame.video.height", 1080)
%include "settings.liq"
%include "metadata_api.liq"
%include "silent_fallback.liq"
s = input.srt(id="input_srt_main", port=9000)
# Split audio off to be handled specially
a = drop_video(s)
a = mksafe_soft(a)
a = setup_harbor_metadata_api(a)
output.harbor(
id="out_a_harbor",
%ogg(%flac),
# fallible=true,
port=8050,
mount="/outa",
a)