Ticket #316 (new Bugs)
output.aacplus unable to start
| Reported by: | romeodeepmind | Owned by: | admin |
|---|---|---|---|
| Priority: | 1 | Milestone: | |
| Component: | Liquidsoap | Version: | |
| Keywords: | Cc: | ||
| Mac OSX: | yes | Linux: | yes |
| NetBSD: | yes | Other Operating System: | yes |
| FreeBSD: | yes |
Description
Hi Savonet team! i'm trying to use built-in support of aacplus, but get some exceptions and unable to start liquidsoap
i get various scenarios with different bitrate. all logs and configs are included.
def out_aacplus(mount, bitrate, s) =
output.icecast.aacplus(
id="rvk#{bitrate}a",
restart=true,
mount=mount,
host="localhost",
password=omegaRelayPasswd,
genre=streamGenre,
url=streamUrl,
description=streamDescr,
name=streamTitle,
bitrate=bitrate,
s)
end
set("server.telnet",true)
set("server.telnet.port",8091)
set("harbor.bind_addr","0.0.0.0")
set("harbor.port",8090)
set("harbor.password", playlistPasswd)
################### [Live Sources] ###################
#Live Sources
liveInput = input.harbor( id="live",
"live.ogg",
buffer=10.,
password=livePasswd
)
output.dummy(mksafe(liveInput))
liveInput = insert_metadata(id="liveMeta", liveInput)
################### [Playlists] ###################
playlistInput = input.harbor(id="playlist",
"playlist.ogg",
buffer=10.,
password=playlistPasswd,
)
#make source active
output.dummy(mksafe(playlistInput))
################### [Noise] ###################
noiseInput = noise(id="noise")
noiseInput = amplify(id="noiseAmp", 0.05, noiseInput)
noiseInput = rewrite_metadata([("title","no signal")], noiseInput)
################### [Master Input] ###################
#Master Input
input=fallback( id="mainFallback",
track_sensitive=false,
[liveInput, playlistInput, noiseInput])
################### [Mount Points] ###################
out_aacplus("/rvk", 56, input)
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

