Change output flow.
parent
97429d6ce9
commit
88bd48b2ea
|
@ -15,16 +15,38 @@ set("frame.video.height", 1080)
|
||||||
%include "metadata_api.liq"
|
%include "metadata_api.liq"
|
||||||
%include "silent_fallback.liq"
|
%include "silent_fallback.liq"
|
||||||
|
|
||||||
s = input.srt(id="input_srt_main", port=9000)
|
s = input.srt(id="input_srt_main", max=3., port=9000)
|
||||||
|
output.dummy(fallible=true, s)
|
||||||
|
|
||||||
# Split audio off to be handled specially
|
# Split audio off to be handled specially
|
||||||
a = drop_video(s)
|
a = drop_video(s)
|
||||||
a = mksafe_soft(a)
|
a = mksafe_soft(a)
|
||||||
a = setup_harbor_metadata_api(a)
|
a = setup_harbor_metadata_api(a)
|
||||||
|
output.dummy(a)
|
||||||
output.harbor(
|
output.harbor(
|
||||||
id="out_a_harbor",
|
id="out_a_harbor",
|
||||||
%ogg(%flac),
|
%ogg(%flac),
|
||||||
# fallible=true,
|
# fallible=true,
|
||||||
port=8050,
|
port=8050,
|
||||||
mount="/outa",
|
mount="/outa/flac",
|
||||||
|
a)
|
||||||
|
output.harbor(
|
||||||
|
id="out_a_harbor",
|
||||||
|
%mp3(bitrate=320),
|
||||||
|
# fallible=true,
|
||||||
|
port=8050,
|
||||||
|
mount="/outa/mp3",
|
||||||
|
a)
|
||||||
|
output.icecast(
|
||||||
|
id="out_a_rekt",
|
||||||
|
%mp3(bitrate=320),
|
||||||
|
# fallible=true,
|
||||||
|
mount="rekt",
|
||||||
|
port=60000,
|
||||||
|
#host="stream.rekt.network",
|
||||||
|
host="stream.rekt.fm",
|
||||||
|
user="icedream",
|
||||||
|
name=stream_name,
|
||||||
|
password="***REMOVED***",
|
||||||
|
start=false,
|
||||||
a)
|
a)
|
||||||
|
|
Loading…
Reference in New Issue