-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
70 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
<h1 align="center">fusion app</h1> | ||
<h1 align="center">emifuse app</h1> | ||
|
||
<div align="center"> | ||
|
||
Audio streaming with Liquidsoap 🧼 | ||
|
||
[![Lint](https://github.com/radio-aktywne/app-fusion/actions/workflows/lint.yaml/badge.svg)](https://github.com/radio-aktywne/app-fusion/actions/workflows/lint.yaml) | ||
[![Image](https://github.com/radio-aktywne/app-fusion/actions/workflows/image.yaml/badge.svg)](https://github.com/radio-aktywne/app-fusion/actions/workflows/image.yaml) | ||
[![Registry](https://github.com/radio-aktywne/app-fusion/actions/workflows/registry.yaml/badge.svg)](https://github.com/radio-aktywne/app-fusion/actions/workflows/registry.yaml) | ||
[![Docs](https://github.com/radio-aktywne/app-fusion/actions/workflows/docs.yaml/badge.svg)](https://github.com/radio-aktywne/app-fusion/actions/workflows/docs.yaml) | ||
[![Lint](https://github.com/radio-aktywne/app-emifuse/actions/workflows/lint.yaml/badge.svg)](https://github.com/radio-aktywne/app-emifuse/actions/workflows/lint.yaml) | ||
[![Image](https://github.com/radio-aktywne/app-emifuse/actions/workflows/image.yaml/badge.svg)](https://github.com/radio-aktywne/app-emifuse/actions/workflows/image.yaml) | ||
[![Registry](https://github.com/radio-aktywne/app-emifuse/actions/workflows/registry.yaml/badge.svg)](https://github.com/radio-aktywne/app-emifuse/actions/workflows/registry.yaml) | ||
[![Docs](https://github.com/radio-aktywne/app-emifuse/actions/workflows/docs.yaml/badge.svg)](https://github.com/radio-aktywne/app-emifuse/actions/workflows/docs.yaml) | ||
|
||
</div> | ||
|
||
--- | ||
|
||
## 💡 About | ||
|
||
`fusion` is a [`Liquidsoap`](https://www.liquidsoap.info) | ||
`emifuse` is a [`Liquidsoap`](https://www.liquidsoap.info) | ||
server that fuses music from playlists and live audio | ||
and sends one output stream to broadcast servers. | ||
|
||
## 📄 Further Reading | ||
|
||
More in-depth documentation can be found | ||
[here](https://radio-aktywne.github.io/app-fusion). | ||
[here](https://radio-aktywne.github.io/app-emifuse). | ||
|
||
## 💻 Development | ||
|
||
Read more about how to develop the project | ||
[here](https://github.com/radio-aktywne/app-fusion/blob/main/CONTRIBUTING.md). | ||
[here](https://github.com/radio-aktywne/app-emifuse/blob/main/CONTRIBUTING.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
let config.emicast.icy = {} | ||
|
||
let config.emicast.icy.host = | ||
utils.env.safeget(default="localhost", "FUSION__EMICAST__ICY__HOST") | ||
utils.env.safeget(default="localhost", "EMIFUSE__EMICAST__ICY__HOST") | ||
let config.emicast.icy.port = | ||
utils.parse.int( | ||
utils.env.safeget(default="8000", "FUSION__EMICAST__ICY__PORT") | ||
utils.env.safeget(default="8000", "EMIFUSE__EMICAST__ICY__PORT") | ||
) | ||
let config.emicast.icy.user = | ||
utils.env.safeget(default="source", "FUSION__EMICAST__ICY__USER") | ||
utils.env.safeget(default="source", "EMIFUSE__EMICAST__ICY__USER") | ||
let config.emicast.icy.password = | ||
utils.env.safeget(default="password", "FUSION__EMICAST__ICY__PASSWORD") | ||
utils.env.safeget(default="password", "EMIFUSE__EMICAST__ICY__PASSWORD") | ||
let config.emicast.icy.mount = | ||
utils.env.safeget(default="radio.mp3", "FUSION__EMICAST__ICY__MOUNT") | ||
utils.env.safeget(default="radio.mp3", "EMIFUSE__EMICAST__ICY__MOUNT") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
let config.state.store = {} | ||
|
||
let config.state.store.path = | ||
utils.env.safeget(default="data/state.json", "FUSION__STATE__STORE__PATH") | ||
utils.env.safeget(default="data/state.json", "EMIFUSE__STATE__STORE__PATH") |