♻️ cleanup aac code
Removes unsupported codecs from our liquidsoap code
This commit is contained in:
parent
87b8ef4f91
commit
a526a59ef4
3 changed files with 2 additions and 158 deletions
|
@ -154,20 +154,6 @@ def output_to(output_type, type, bitrate, host, port, pass, mount_point, url, de
|
|||
end
|
||||
%endif
|
||||
|
||||
# FDK-AAC is the only good AAC encoder. libvoaac is deprecated and aacplus is subpar.
|
||||
# The difference in compression quality is clearly audible. -- Albert
|
||||
# %ifencoder %aac
|
||||
# if type == "aac" then
|
||||
# %include "aac.liq"
|
||||
# end
|
||||
# %endif
|
||||
|
||||
# %ifencoder %aacplus
|
||||
# if type == "aacplus" then
|
||||
# %include "aacplus.liq"
|
||||
# end
|
||||
# %endif
|
||||
|
||||
%ifencoder %fdkaac
|
||||
if type == "aac" then
|
||||
%include "fdkaac.liq"
|
||||
|
@ -207,15 +193,9 @@ def output_to(output_type, type, bitrate, host, port, pass, mount_point, url, de
|
|||
%include "mp3.liq"
|
||||
end
|
||||
|
||||
%ifencoder %aac
|
||||
%ifencoder %fdkaac
|
||||
if type == "aac" then
|
||||
%include "aac.liq"
|
||||
end
|
||||
%endif
|
||||
|
||||
%ifencoder %aacplus
|
||||
if type == "aacplus" then
|
||||
%include "aacplus.liq"
|
||||
%include "fdkaac.liq"
|
||||
end
|
||||
%endif
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue