12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- ###########################################
- # Liquidsoap config file #
- ###########################################
- ###########################################
- # Output settings #
- ###########################################
- output_sound_device = false
- output_sound_device_type = "ALSA"
- s1_output = "icecast"
- s2_output = "icecast"
- s3_output = "icecast"
- s1_enable = true
- s2_enable = false
- s3_enable = false
- s1_type = "ogg"
- s2_type = "ogg"
- s3_type = "mp3"
- s1_bitrate = 128
- s2_bitrate = 128
- s3_bitrate = 160
- ###########################################
- # Logging settings #
- ###########################################
- log_file = "/var/log/airtime/pypo-liquidsoap/<script>.log"
- #log_level = 3
- ###########################################
- # Icecast Stream settings #
- ###########################################
- 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 = 8000
- s1_user = ""
- s2_user = ""
- s3_user = ""
- s1_pass = "hackme"
- s2_pass = "hackme"
- s3_pass = "hackme"
- # Icecast mountpoint names
- s1_mount = "airtime_128.ogg"
- s2_mount = "airtime_128.ogg"
- s3_mount = "airtime_160.mp3"
- # Webstream metadata settings
- s1_url = "http://airtime.sourcefabric.org"
- s2_url = "http://airtime.sourcefabric.org"
- s3_url = "http://airtime.sourcefabric.org"
- s1_description = "Airtime Radio! stream1"
- s2_description = "Airtime Radio! stream2"
- s3_description = "Airtime Radio! stream3"
- 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
- # when the metadata changes to a new track. Some versions of
- # mplayer and VLC have this problem. Enable this option at your
- # own risk!
- icecast_vorbis_metadata = false
|