Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(docker-compose): upgrade to liquidsoap v2.2.4 #11

Merged
merged 1 commit into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 15 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
# CHANGELOG.md

## Unreleased (2024-03-12)
## 2.0.2 (2024-03-12)

Features:

- upgrade liquidsoap to v2.2.4. Includes a memory leak fix on srt sources

Breaking changes:

- Rename fdkaac profile to libfkd_aac to match real codec names
- rename fdkaac profile to libfkd_aac to match real codec names

Bugfix :

- Replace `aac_he` profile with `aac_low` for default aac codec since he_aac
- replace `aac_he` profile with `aac_low` for default aac codec since he_aac
isn't supported
- Fix fdkaac profiles names to match real codec names
- fix fdkaac profiles names to match real codec names

## 2.0.1 (2024-01-08)

Expand All @@ -36,21 +40,21 @@ Features:

Breaking changes:

- Some variables have been renamed in the configuration file.
- A new function must be declared in the configuration file to select a channel
- some variables have been renamed in the configuration file.
- a new function must be declared in the configuration file to select a channel
layout (stereo or surround).
- scripts paths have changed, be careful if you use the scripts folder directly.

## 1.2.1 (2023-09-06)

Features:

- Add new dashboard for LUFS levels.
- Add new graphs in liquidsoap dashboard for SRT inputs, packet loss, drops, etc.
- add new dashboard for LUFS levels.
- add new graphs in liquidsoap dashboard for SRT inputs, packet loss, drops, etc.
- improve README.md.
- Improve docker-compose.yml, Makefile and examples.
- Improve CHANGELOG.md.
- Add GREETINGS.md.
- improve docker-compose.yml, Makefile and examples.
- improve CHANGELOG.md.
- add GREETINGS.md.
- upgrade liquidsoap to v2.2.1.

## 1.0.6 (2023-04-18)
Expand Down
22 changes: 11 additions & 11 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- /conf/myradio.liq
- /scripts/transcoder/00-live.liq
container_name: liquidsoap-myradio
image: savonet/liquidsoap:v2.2.3
image: savonet/liquidsoap:v2.2.4
networks:
- default
restart: unless-stopped
Expand All @@ -36,7 +36,7 @@ services:
- /conf/myradiosurround.liq
- /scripts/transcoder/00-live.liq
container_name: liquidsoap-myradiosurround
image: savonet/liquidsoap:v2.2.3
image: savonet/liquidsoap:v2.2.4
networks:
- default
restart: unless-stopped
Expand Down Expand Up @@ -76,7 +76,7 @@ services:
- "srt://liquidsoap-myradio:10000" # voieA_caller1
container_name: source-voieA-caller1
entrypoint: []
image: savonet/liquidsoap:v2.2.3
image: savonet/liquidsoap:v2.2.4
networks:
- default
restart: unless-stopped
Expand All @@ -97,7 +97,7 @@ services:
- "srt://liquidsoap-myradio:10002" # voieB_caller1
container_name: source-voieB-caller1
entrypoint: []
image: savonet/liquidsoap:v2.2.3
image: savonet/liquidsoap:v2.2.4
networks:
- default
restart: unless-stopped
Expand All @@ -118,7 +118,7 @@ services:
- "srt://liquidsoap-myradio:10004" # override_caller1
container_name: source-override-caller1
entrypoint: []
image: savonet/liquidsoap:v2.2.3
image: savonet/liquidsoap:v2.2.4
networks:
- default
restart: unless-stopped
Expand All @@ -130,7 +130,7 @@ services:
- /conf/mystreamersurround.liq
- /scripts/streamer/00-live.liq
container_name: source-mystreamersurround
image: savonet/liquidsoap:v2.2.3
image: savonet/liquidsoap:v2.2.4
networks:
- default
restart: unless-stopped
Expand Down Expand Up @@ -158,7 +158,7 @@ services:
- "srt://liquidsoap-myradiosurround:10012" # voieB_caller1
container_name: source-ffmpegsurround
entrypoint: []
image: savonet/liquidsoap:v2.2.3
image: savonet/liquidsoap:v2.2.4
networks:
- default
restart: unless-stopped
Expand Down Expand Up @@ -299,7 +299,7 @@ services:
- /conf/myradio.liq
- /scripts/transcoder/00-live.liq
container_name: liquidsoap-test-transcoder-stereo
image: savonet/liquidsoap:v2.2.3
image: savonet/liquidsoap:v2.2.4
networks:
- default
volumes:
Expand All @@ -312,7 +312,7 @@ services:
- /conf/myradiosurround.liq
- /scripts/transcoder/00-live.liq
container_name: liquidsoap-test-transcoder-surround
image: savonet/liquidsoap:v2.2.3
image: savonet/liquidsoap:v2.2.4
networks:
- default
volumes:
Expand All @@ -325,7 +325,7 @@ services:
- /conf/mystreamer.liq
- /scripts/streamer/00-live.liq
container_name: liquidsoap-test-streamer-stereo
image: savonet/liquidsoap:v2.2.3
image: savonet/liquidsoap:v2.2.4
networks:
- default
volumes:
Expand All @@ -338,7 +338,7 @@ services:
- /conf/mystreamersurround.liq
- /scripts/streamer/00-live.liq
container_name: liquidsoap-test-streamer-surround
image: savonet/liquidsoap:v2.2.3
image: savonet/liquidsoap:v2.2.4
networks:
- default
volumes:
Expand Down