CC-2590: support multiple stream on liquidsoap
- temp commit
This commit is contained in:
parent
ceea384154
commit
3dca3fd800
3 changed files with 172 additions and 77 deletions
|
@ -6,11 +6,18 @@
|
|||
# Output settings #
|
||||
###########################################
|
||||
output_sound_device = false
|
||||
output_icecast_vorbis = true
|
||||
output_icecast_mp3 = false
|
||||
output_shoutcast = false
|
||||
output_s1 = "icecast"
|
||||
output_s2 = "icecast"
|
||||
output_s3 = "shoutcast"
|
||||
|
||||
s1_type = "mp3"
|
||||
s2_type = "ogg"
|
||||
s3_type = "mp3"
|
||||
|
||||
#output_bitrate = 128
|
||||
s1_bitrate = 64
|
||||
s2_bitrate = 128
|
||||
s3_bitrate = 128
|
||||
#output_samplerate = 44100
|
||||
#output_stereo = true
|
||||
|
||||
|
@ -23,18 +30,31 @@ log_file = "/var/log/airtime/pypo-liquidsoap/<script>.log"
|
|||
###########################################
|
||||
# Icecast Stream settings #
|
||||
###########################################
|
||||
icecast_host = "127.0.0.1"
|
||||
icecast_port = 8000
|
||||
icecast_pass = "hackme"
|
||||
s1_host = "127.0.0.1"
|
||||
s2_host = "127.0.0.1"
|
||||
s3_host = "127.0.0.1"
|
||||
s1_port = 8000
|
||||
s2_port = 8000
|
||||
s3_port = 9000
|
||||
s1_pass = "hackme"
|
||||
s2_pass = "hackme"
|
||||
s3_pass = "testing"
|
||||
|
||||
# Icecast mountpoint names
|
||||
mount_point_mp3 = "airtime.mp3"
|
||||
mount_point_vorbis = "airtime.ogg"
|
||||
s1_mount = "airtime_64.mp3"
|
||||
s2_mount = "airtime_128.ogg"
|
||||
s3_mount = "airtime_128.ogg"
|
||||
|
||||
# Webstream metadata settings
|
||||
icecast_url = "http://airtime.sourcefabric.org"
|
||||
icecast_description = "Airtime Radio!"
|
||||
icecast_genre = "genre"
|
||||
s1_url = "http://airtime.sourcefabric.org"
|
||||
s2_url = "http://airtime.sourcefabric.org"
|
||||
s3_url = "http://airtime.sourcefabric.org"
|
||||
s1_description = "Airtime Radio!"
|
||||
s2_description = "Airtime Radio!"
|
||||
s3_description = "Airtime Radio!"
|
||||
s1_genre = "genre"
|
||||
s2_genre = "genre"
|
||||
s3_genre = "genre"
|
||||
|
||||
# Audio stream metadata for vorbis/ogg is disabled by default
|
||||
# due to a number of client media players that disconnect
|
||||
|
@ -46,10 +66,10 @@ output_icecast_vorbis_metadata = false
|
|||
###########################################
|
||||
# Shoutcast Stream settings #
|
||||
###########################################
|
||||
shoutcast_host = "127.0.0.1"
|
||||
shoutcast_port = 9000
|
||||
shoutcast_pass = "testing"
|
||||
#shoutcast_host = "127.0.0.1"
|
||||
#shoutcast_port = 9000
|
||||
#shoutcast_pass = "testing"
|
||||
|
||||
# Webstream metadata settings
|
||||
shoutcast_url = "http://airtime.sourcefabric.org"
|
||||
shoutcast_genre = "genre"
|
||||
#shoutcast_url = "http://airtime.sourcefabric.org"
|
||||
#shoutcast_genre = "genre"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue