Skip to content

Commit 7cc5e27

Browse files
authored
Merge pull request #1029 from TheCaptain989/lidarr-flac2mp3
lidarr: flac2mp3 release 2.5.0
2 parents 6a70b45 + 7351256 commit 7cc5e27

File tree

4 files changed

+151
-81
lines changed

4 files changed

+151
-81
lines changed

.github/workflows/BuildImage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
echo "BASEIMAGE=${{ env.BASEIMAGE }}" >> $GITHUB_OUTPUT
2121
echo "MODNAME=${{ env.MODNAME }}" >> $GITHUB_OUTPUT
2222
# **** If the mod needs to be versioned, set the versioning logic below. Otherwise leave as is. ****
23-
MOD_VERSION="2.4.3"
23+
MOD_VERSION="2.5.0"
2424
echo "MOD_VERSION=${MOD_VERSION}" >> $GITHUB_OUTPUT
2525
outputs:
2626
GITHUB_REPO: ${{ steps.outputs.outputs.GITHUB_REPO }}

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

33
## Buildstage ##
4-
FROM ghcr.io/linuxserver/baseimage-alpine:3.20 as buildstage
4+
FROM ghcr.io/linuxserver/baseimage-alpine:3.20 AS buildstage
55
ARG MOD_VERSION
66

77
# copy local files

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,8 @@ Regular expression syntax is beyond the scope of this document. See this [tutor
185185
# Convert .mp3 files to Opus format, 192 kbit/s, no cover art
186186
-a "-y -map 0 -c:a aac -b:a 240k -c:v copy" -e m4a
187187
# Convert to M4A format, using AAC 240 kbit/s audio, cover art, overwrite file
188+
-a "-c:a flac -sample_fmt s16 -ar 44100" -e flac
189+
# Resample to 16-bit FLAC
188190
--file "/path/to/audio/a-ha/Hunting High and Low/01 Take on Me.flac"
189191
# Batch Mode
190192
# Output 320kbit/s MP3

0 commit comments

Comments
 (0)