another big push

This commit is contained in:
2020-12-22 22:53:57 +01:00
parent 7722aef9d3
commit 2a7624eb75
14 changed files with 240 additions and 20 deletions

5
code/d-espeak.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
TEXTE=$(ddate)
echo $TEXTE | espeak-ng

1
code/listen-osc.c Normal file
View File

@@ -0,0 +1 @@
/* LISTEN OSC */

16
code/microcast.c Normal file
View File

@@ -0,0 +1,16 @@
/*
* microcast.c
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <shout/shout.h>
int main(int argc, char *argv[])
{
return 1;
}

1
code/send-osc.c Normal file
View File

@@ -0,0 +1 @@
/* SEND OSC */

19
code/takeover.liq Normal file
View File

@@ -0,0 +1,19 @@
#
# TAKEOVER.LIQ
#
default = single("files/changer-monde.ogg")
liste = playlist(mode="random", "playlist.txt")
#
# point d'entree pour le live
#
set("harbor.bind_addr", "localhost")
live = input.harbor("input", port=8088,
password="thegreatquux")
radio = fallback( track_sensitive=false,
[live, liste, default] )
output.icecast( %vorbis,
host = "porno.mixart-myrys.org",
port = 8000,
password = "XXXXXXXXXXX",
mount = "/changer-monde",
radio)