-
-
Notifications
You must be signed in to change notification settings - Fork 24
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
Link to RPM Fusion package for Fedora. #43
base: master
Are you sure you want to change the base?
Conversation
Thanks for this advice! I successfully produced a Dockerfile that can be used to build a Docker image: FROM fedora:latest
WORKDIR /workspace
ENTRYPOINT ["/usr/bin/loudgain"]
# NOTE: pulls in quite many unnecessary dependencies: https://twitter.com/joonas_fi/status/1513109460570591232
RUN rpm -q rpmfusion-free-release || sudo yum install --assumeyes https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-`rpm -E %fedora`.noarch.rpm \
&& sudo yum install --assumeyes loudgain |
README.md
Outdated
|
||
```bash | ||
rpm -q rpmfusion-free-release || sudo yum install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-`rpm -E %fedora`.noarch.rpm | ||
yum swap --allowerasing ffmpeg-free ffmpeg |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead recommend installing libavcodec-freeworld
to overlay the extra codecs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the tip. Actually, these days I don't think RPM Fusion adds any useful audio codecs, so I'm going to drop the suggestion entirely.
The audio codecs we care about are included with Fedora.
No description provided.