mirror of
https://pagure.io/fedora-docs/quick-docs.git
synced 2024-11-24 21:35:17 +00:00
52 lines
913 B
Text
52 lines
913 B
Text
= Installing and Running VLC
|
|
Lyle Corman ; Ankur Sinha
|
|
:revnumber: unspecified
|
|
:revdate: 2019
|
|
:category: Software installation
|
|
:tags: How-to VLC
|
|
//:page-aliases:
|
|
:experimental:
|
|
//:imagesdir: ./images
|
|
|
|
|
|
include::{partialsdir}/3rdparty-message.adoc[]
|
|
|
|
|
|
== Prerequisites
|
|
|
|
* VLC is provided by the RPMFusion repositories. xref:rpmfusion-setup.adoc[Use these instructions to enable them].
|
|
|
|
|
|
|
|
== Installing VLC
|
|
|
|
|
|
* Install VLC:
|
|
+
|
|
[source,]
|
|
----
|
|
$ sudo dnf install vlc
|
|
----
|
|
|
|
|
|
|
|
== Running VLC
|
|
|
|
* To run the VLC media player using GUI:
|
|
+
|
|
--
|
|
. Open the launcher by pressing the _Super_ key.
|
|
. Type _vlc_.
|
|
. Press _Enter_.
|
|
--
|
|
|
|
|
|
* To run VLC from the command line:
|
|
+
|
|
[subs="quotes"]
|
|
----
|
|
$ vlc _source_
|
|
----
|
|
+
|
|
Replace _source_ with path to the file to be played, URL, or other data source. For more details, see link:https://wiki.videolan.org/Documentation:Command_line/#Opening_streams[Opening streams] on VideoLAN wiki.
|
|
|