14 lines
361 B
Plaintext
14 lines
361 B
Plaintext
#!/usr/bin/liquidsoap
|
|
|
|
#input1 = mksafe(input.harbor("direct.ogg",port=8000,password="JsCabjWJUZXrrrKCaaRZma5wD4YKj5LQLXv6f"))
|
|
input1 = mksafe(input.http("http://172.29.10.109:8000/paj.ogg"))
|
|
|
|
# Direct mp3
|
|
output.icecast(
|
|
%mp3(stereo=false),
|
|
mount="/paj.mp3",
|
|
host="172.29.10.109", port=8000, password="JsCabjWJUZXrrrKCaaRZma5wD4YKj5LQLXv6f",
|
|
input1)
|
|
|
|
|