From a76c54e57b1aa7e8396753ec121d818405563134 Mon Sep 17 00:00:00 2001 From: lassulus Date: Sat, 21 Jan 2017 21:57:43 +0100 Subject: l 2 radio: use new Reaktor api --- lass/2configs/radio.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lass/2configs/radio.nix') diff --git a/lass/2configs/radio.nix b/lass/2configs/radio.nix index 18574471e..6fa143bc7 100644 --- a/lass/2configs/radio.nix +++ b/lass/2configs/radio.nix @@ -138,8 +138,7 @@ in { }; }; - krebs.Reaktor = { - enable = true; + krebs.Reaktor.playlist = { nickname = "the_playlist|r"; channels = [ "#the_playlist" ]; extraEnviron = { -- cgit v1.2.3 From 8d527f99be68714ab68a09a02b8b3f06f70a7070 Mon Sep 17 00:00:00 2001 From: lassulus Date: Sun, 22 Jan 2017 01:18:31 +0100 Subject: l 2 radio: stream now in stereo! this also fixes the slowmotion playback issue --- lass/2configs/radio.nix | 36 ++++++++++++++---------------------- 1 file changed, 14 insertions(+), 22 deletions(-) (limited to 'lass/2configs/radio.nix') diff --git a/lass/2configs/radio.nix b/lass/2configs/radio.nix index 6fa143bc7..6e96f8845 100644 --- a/lass/2configs/radio.nix +++ b/lass/2configs/radio.nix @@ -60,28 +60,20 @@ in { musicDirectory = "/home/radio/the_playlist/music"; extraConfig = '' audio_output { - type "shout" - encoding "ogg" - name "the_playlist" - host "localhost" - port "8000" - mount "/radio.ogg" - - # This is the source password in icecast.xml - password "${source-password}" - - # Set either quality or bit rate - # quality "5.0" - bitrate "128" - - format "44100:16:1" - - # Optional Parameters - user "source" - # description "here is my long description" - genre "good music" - } # end of audio_output - + type "shout" + encoding "ogg" + name "the_playlist" + host "localhost" + port "8000" + mount "/radio.ogg" + password "${source-password}" + bitrate "128" + + format "44100:16:2" + + user "source" + genre "good music" + } ''; }; -- cgit v1.2.3