fix: Revert unnecessary Docker image change
- Keep original savonet/liquidsoap:792d8bf (Liquidsoap 2.4.1+git) - Original image already includes FDK-AAC encoder support - No need to downgrade to v2.2.5 - Update documentation to reflect correct information The original 792d8bf commit corresponds to Liquidsoap 2.4.1+git which already has liquidsoap.build_config.optionals.fdkaac available.
This commit is contained in:
parent
aad7f49d0c
commit
9ab4e6c383
|
|
@ -15,9 +15,10 @@ This branch adds AAC (Advanced Audio Coding) streaming support to Asteroid Radio
|
||||||
- **AAC set as default** (recommended option)
|
- **AAC set as default** (recommended option)
|
||||||
|
|
||||||
### ⚙️ **Technical Implementation**
|
### ⚙️ **Technical Implementation**
|
||||||
|
|
||||||
- **Liquidsoap real-time transcoding** from MP3 files to AAC
|
- **Liquidsoap real-time transcoding** from MP3 files to AAC
|
||||||
- **FDK-AAC encoder** via `%fdkaac()` function
|
- **FDK-AAC encoder** via `%fdkaac()` function
|
||||||
- **Updated Docker image** to `savonet/liquidsoap:v2.2.5` for AAC support
|
- **Existing Docker image** `savonet/liquidsoap:792d8bf` already includes AAC support
|
||||||
|
|
||||||
## Stream URLs
|
## Stream URLs
|
||||||
|
|
||||||
|
|
@ -76,10 +77,12 @@ output.icecast(
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||
### **Docker Updates**
|
### **Docker Configuration**
|
||||||
- Updated base image from `savonet/liquidsoap:792d8bf` to `savonet/liquidsoap:v2.2.5`
|
|
||||||
- Includes FDK-AAC encoder support
|
- Uses existing `savonet/liquidsoap:792d8bf` image (Liquidsoap 2.4.1+git)
|
||||||
- Maintains backward compatibility with existing MP3 streams
|
- FDK-AAC encoder already included and supported
|
||||||
|
- No Docker image changes required
|
||||||
|
- Maintains full backward compatibility with existing MP3 streams
|
||||||
|
|
||||||
### **Web Interface Updates**
|
### **Web Interface Updates**
|
||||||
- Added stream quality selector with JavaScript switching
|
- Added stream quality selector with JavaScript switching
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# Use official Liquidsoap Docker image with AAC support
|
# Use official Liquidsoap Docker image from Savonet team
|
||||||
FROM savonet/liquidsoap:v2.2.5
|
FROM savonet/liquidsoap:792d8bf
|
||||||
|
|
||||||
# Switch to root for setup
|
# Switch to root for setup
|
||||||
USER root
|
USER root
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue