Separate Liquidsoap stream info from Icecast
This commit is contained in:
parent
e0d8fd1473
commit
0cdc30cf8c
|
@ -20,7 +20,7 @@
|
||||||
};
|
};
|
||||||
swraid = {
|
swraid = {
|
||||||
enable = true;
|
enable = true;
|
||||||
mdadmConf = "MAILADDR jimbo@${config.domains.jim2}";
|
mdadmConf = "MAILADDR contact@${config.domains.jim2}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -19,27 +19,7 @@
|
||||||
</authentication>
|
</authentication>
|
||||||
|
|
||||||
<location>Canada</location>
|
<location>Canada</location>
|
||||||
<admin>jimbo@${config.domains.jim2}</admin>
|
<admin>contact@${config.domains.jim2}</admin>
|
||||||
|
|
||||||
<mount type="normal">
|
|
||||||
<mount-name>/jimbops.opus</mount-name>
|
|
||||||
<stream-name>JimBops Radio</stream-name>
|
|
||||||
<stream-description>Music gathered by me, Jimbo.</stream-description>
|
|
||||||
<stream-url>https://icecast.jimbosfiles.com/jimbops.opus</stream-url>
|
|
||||||
<genre>Anything</genre>
|
|
||||||
<type>application/ogg</type>
|
|
||||||
<subtype>vorbis</subtype>
|
|
||||||
</mount>
|
|
||||||
|
|
||||||
<mount type="normal">
|
|
||||||
<mount-name>/jimscrap.opus</mount-name>
|
|
||||||
<stream-name>Jimbo's Scrap</stream-name>
|
|
||||||
<stream-description>Music canned from the main radio.</stream-description>
|
|
||||||
<stream-url>https://icecast.jimbosfiles.com/jimscrap.opus</stream-url>
|
|
||||||
<genre>Scrapped</genre>
|
|
||||||
<type>application/ogg</type>
|
|
||||||
<subtype>vorbis</subtype>
|
|
||||||
</mount>
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,22 +6,25 @@
|
||||||
settings.init.allow_root.set(true)
|
settings.init.allow_root.set(true)
|
||||||
settings.scheduler.fast_queues.set(2)
|
settings.scheduler.fast_queues.set(2)
|
||||||
|
|
||||||
# Define the source with random playlist
|
|
||||||
jimbops = mksafe(playlist(mode='randomize', reload=1, reload_mode="rounds", "/export/JimboNFS/Music/JimBops"))
|
jimbops = mksafe(playlist(mode='randomize', reload=1, reload_mode="rounds", "/export/JimboNFS/Music/JimBops"))
|
||||||
|
|
||||||
# Ensure the stream never stops
|
|
||||||
jimbops_fallback = fallback([jimbops, jimbops])
|
jimbops_fallback = fallback([jimbops, jimbops])
|
||||||
|
|
||||||
# Output configuration to Icecast
|
|
||||||
output.icecast(
|
output.icecast(
|
||||||
%ffmpeg(format="ogg", %audio(codec="libvorbis", samplerate=48000, b="256k", channels=2)),
|
%ffmpeg(format="ogg", %audio(codec="libvorbis", samplerate=48000, b="256k", channels=2)),
|
||||||
host="127.0.0.1",
|
host="127.0.0.1",
|
||||||
port=265,
|
port=265,
|
||||||
password="${config.secrets.castSourcePass}",
|
password="${config.secrets.castSourcePass}",
|
||||||
public=true,
|
|
||||||
icy_metadata=["artist", "title"],
|
|
||||||
mount="jimbops.opus",
|
|
||||||
encoding = "UTF-8",
|
encoding = "UTF-8",
|
||||||
|
|
||||||
|
radio="JimBops Radio",
|
||||||
|
genre = "Anything",
|
||||||
|
description="Music gathered by me, Jimbo.",
|
||||||
|
website="https://icecast.${config.domains.jim1}",
|
||||||
|
url="https://icecast.${config.domains.jim1}/jimbops.opus",
|
||||||
|
mount="jimbops.opus",
|
||||||
|
icy_metadata=["artist", "title"],
|
||||||
|
public=true,
|
||||||
|
|
||||||
jimbops_fallback
|
jimbops_fallback
|
||||||
)
|
)
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -1,28 +1,31 @@
|
||||||
{ pkgs, config, ... }:
|
{ pkgs, config, ... }:
|
||||||
{
|
{
|
||||||
services.liquidsoap.streams = {
|
services.liquidsoap.streams = {
|
||||||
jimscrap = pkgs.writeText "liquidjim" ''
|
jimbops = pkgs.writeText "liquidjim" ''
|
||||||
settings.log.stdout.set(true)
|
settings.log.stdout.set(true)
|
||||||
settings.init.allow_root.set(true)
|
settings.init.allow_root.set(true)
|
||||||
settings.scheduler.fast_queues.set(2)
|
settings.scheduler.fast_queues.set(2)
|
||||||
|
|
||||||
# Define the source with random playlist
|
jimbops = mksafe(playlist(mode='randomize', reload=1, reload_mode="rounds", "/export/JimboNFS/Music/JimBops"))
|
||||||
jimscrap = mksafe(playlist(mode='randomize', reload=1, reload_mode="rounds", "/export/JimboNFS/Music/JimScrapped"))
|
jimbops_fallback = fallback([jimbops, jimbops])
|
||||||
|
|
||||||
# Ensure the stream never stops
|
|
||||||
jimscrap_fallback = fallback([jimscrap, jimscrap])
|
|
||||||
|
|
||||||
# Output configuration to Icecast
|
|
||||||
output.icecast(
|
output.icecast(
|
||||||
%ffmpeg(format="ogg", %audio(codec="libvorbis", samplerate=48000, b="256k", channels=2)),
|
%ffmpeg(format="ogg", %audio(codec="libvorbis", samplerate=48000, b="256k", channels=2)),
|
||||||
host="127.0.0.1",
|
host="127.0.0.1",
|
||||||
port=265,
|
port=265,
|
||||||
password="${config.secrets.castSourcePass}",
|
password="${config.secrets.castSourcePass}",
|
||||||
public=true,
|
|
||||||
icy_metadata=["artist", "title"],
|
|
||||||
mount="jimscrap.opus",
|
|
||||||
encoding = "UTF-8",
|
encoding = "UTF-8",
|
||||||
jimscrap_fallback
|
|
||||||
|
radio="Jimbo's Scrap",
|
||||||
|
genre = "Scrapped",
|
||||||
|
description="Music canned from the main radio.",
|
||||||
|
website="https://icecast.${config.domains.jim1}",
|
||||||
|
url="https://icecast.${config.domains.jim1}/jimscrap.opus",
|
||||||
|
mount="jimscrap.opus",
|
||||||
|
icy_metadata=["artist", "title"],
|
||||||
|
public=true,
|
||||||
|
|
||||||
|
jimbops_fallback
|
||||||
)
|
)
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue