mirror of
https://pagure.io/fedora-docs/quick-docs.git
synced 2024-11-25 21:54:52 +00:00
55 lines
2.3 KiB
Text
55 lines
2.3 KiB
Text
// Module included in the following assemblies:
|
|
//
|
|
// <List assemblies here, each on a new line>
|
|
|
|
// This module can be included from assemblies using the following include statement:
|
|
// include::modules/<subsystem>/proc_installing-multimedia-plug-ins-with-dnf.adoc[leveloffset=+1]
|
|
|
|
// The file name and the ID are based on the module title. For example:
|
|
// * file name: proc_doing-procedure-a.adoc
|
|
// * ID: [id='proc_doing-procedure-a_{context}']
|
|
// * Title: = Doing procedure A
|
|
//
|
|
// The ID is used as an anchor for linking to the module. Avoid changing
|
|
// it after the module has been published to ensure existing links are not
|
|
// broken.
|
|
//
|
|
// The `context` attribute enables module reuse. Every module's ID includes
|
|
// {context}, which ensures that the module has a unique ID even if it is
|
|
// reused multiple times in a guide.
|
|
//
|
|
// Start the title with a verb, such as Creating or Create. See also
|
|
// _Wording of headings_ in _The IBM Style Guide_.
|
|
[id="proc_installing-multimedia-plug-ins-with-dnf_{context}"]
|
|
= Installing multimedia plug-ins with DNF
|
|
|
|
This procedure describes how to install packages that provide additional multimedia libraries that enable you to play various video and audio files.
|
|
|
|
|
|
[discrete]
|
|
== Prerequisites
|
|
|
|
* Enable the RPM Fusion software repositories.
|
|
|
|
[discrete]
|
|
== Procedure
|
|
|
|
* Use the `dnf` utility to install packages that provide multimedia libraries:
|
|
+
|
|
----
|
|
$ sudo dnf install gstreamer1-libav gstreamer1-plugins-bad-free \
|
|
gstreamer1-plugins-bad-free gstreamer1-plugins-bad-free-extras \
|
|
gstreamer1-plugins-bad-freeworld gstreamer1-plugins-bad-nonfree \
|
|
gstreamer1-plugins-good gstreamer1-plugins-ugly lame-libs lame-libs
|
|
|
|
$ sudo dnf group upgrade --with-optional Multimedia
|
|
----
|
|
|
|
|
|
// [discrete]
|
|
// == Additional resources
|
|
//
|
|
// * A bulleted list of links to other material closely related to the contents of the procedure module.
|
|
// * For more details on writing procedure modules, see the link:https://github.com/redhat-documentation/modular-docs#modular-documentation-reference-guide[Modular Documentation Reference Guide].
|
|
// * Use a consistent system for file names, IDs, and titles. For tips, see _Anchor Names and File Names_ in link:https://github.com/redhat-documentation/modular-docs#modular-documentation-reference-guide[Modular Documentation Reference Guide].
|
|
|