Merge pull request #21 from linuxserver/replaygain

Replaygain
master
j0nnymoe 9 years ago committed by GitHub
commit 7548dd6934

@ -6,10 +6,6 @@ ARG BUILD_DATE
ARG VERSION ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
# environment settings
ENV BEETSDIR="/config"
ENV EDITOR="nano"
# install runtime packages # install runtime packages
RUN \ RUN \
apk add --no-cache \ apk add --no-cache \
@ -18,6 +14,7 @@ RUN \
ffmpeg \ ffmpeg \
ffmpeg-libs \ ffmpeg-libs \
gdbm \ gdbm \
gst-plugins-good1 \
gstreamer1 \ gstreamer1 \
jpeg \ jpeg \
lame \ lame \
@ -25,7 +22,7 @@ RUN \
libpng \ libpng \
nano \ nano \
openjpeg \ openjpeg \
py-gobject \ py-gobject3 \
py-pip \ py-pip \
python \ python \
py-unidecode \ py-unidecode \
@ -86,6 +83,11 @@ RUN \
/root/.cache \ /root/.cache \
/tmp/* /tmp/*
# environment settings
ENV BEETSDIR="/config" \
EDITOR="nano" \
HOME="/config"
# copy local files # copy local files
COPY root/ / COPY root/ /

@ -64,6 +64,8 @@ Edit the config file in /config
To edit the config from within the container use `beet config -e` To edit the config from within the container use `beet config -e`
For a command prompt as user abc `docker exec -it -u abc beets bash`
See [Beets][beetsurl] for more info. See [Beets][beetsurl] for more info.
Contains [beets-copyartifacts](https://github.com/sbarakat/beets-copyartifacts) plugin, [configuration details](https://github.com/sbarakat/beets-copyartifacts#configuration) Contains [beets-copyartifacts](https://github.com/sbarakat/beets-copyartifacts) plugin, [configuration details](https://github.com/sbarakat/beets-copyartifacts#configuration)
@ -83,6 +85,7 @@ Contains [beets-copyartifacts](https://github.com/sbarakat/beets-copyartifacts)
## Versions ## Versions
+ **16.01.17:** Add packages required for replaygain.
+ **24.12.16:** Add [beets-copyartifacts](https://github.com/sbarakat/beets-copyartifacts) plugin. + **24.12.16:** Add [beets-copyartifacts](https://github.com/sbarakat/beets-copyartifacts) plugin.
+ **07.12.16:** Edit cmake options for chromaprint, should now build and install fpcalc, add gstreamer lib + **07.12.16:** Edit cmake options for chromaprint, should now build and install fpcalc, add gstreamer lib
+ **14.10.16:** Add version layer information. + **14.10.16:** Add version layer information.

Loading…
Cancel
Save