Difference between revisions of "Command-line interface"

From VideoLAN Wiki
Jump to navigation Jump to search
m (DoesItReallyMatter moved page Command line to Command-line interface: Consistent naming: VLC command-line help and wikipedia:Command-line interface)
m (→‎macOS: Add wikilink to obsolete option clivlc)
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
<!-- note to editors: a single space before a line will cause that line to appear as if it were wrapped in <pre> HTML tags -->
 
<!-- note to editors: a single space before a line will cause that line to appear as if it were wrapped in <pre> HTML tags -->
:''See also [[VLC command-line help]], [[Console|Console interfaces]]''
+
{{See also|VLC command-line help|Console|label2=Console interfaces|Documentation:Command line}}
  
 
This page describes how to access the terminal and start VLC in it.
 
This page describes how to access the terminal and start VLC in it.
Line 8: Line 8:
 
Running VLC from the terminal gives you access to many commands and features in VideoLAN which you would not otherwise have: see the [[VLC command-line help]] page to find out more about options from the command line.
 
Running VLC from the terminal gives you access to many commands and features in VideoLAN which you would not otherwise have: see the [[VLC command-line help]] page to find out more about options from the command line.
  
Note that '''%''' is used on many of the examples on the VLC Wiki to represent the prompt, so you don't need to type that in.<br>
+
Note that '''<samp>%</samp>''' is used on many of the examples on the VLC Wiki to represent the prompt, so you don't need to type that in.<br>
Depending on your [[operating system]], the prompt could appear as a >, %, $ or # symbol. Read on for a detailed explanation.
+
Depending on your [[operating system]], the prompt could appear as a <samp>&gt;</samp>, <samp>%</samp>, <samp>$</samp> or <samp>#</samp> symbol. Read on for a detailed explanation.
 +
 
 +
Tip: For extended command-line work (or play) it may be worth changing to the directory of VLC. Most command-line interpreters will understand <code><nowiki>vlc</nowiki></code> or <code><nowiki>vlc.exe</nowiki></code> to be the program in that directory.
  
 
== Windows ==
 
== Windows ==
 
In Windows, this is called the '''command prompt'''. To open the command prompt:
 
In Windows, this is called the '''command prompt'''. To open the command prompt:
 
* Click on the Start Menu and select Run.
 
* Click on the Start Menu and select Run.
* In the Run box, type '''cmd''' (or '''command''' for older versions of Windows) and press enter.
+
* In the Run box, type '''<kbd>cmd</kbd>''' (or '''<kbd>command</kbd>''' for older versions of Windows) and press enter.
 
The command prompt will look something like this:
 
The command prompt will look something like this:
 
  C:\>
 
  C:\>
To run VLC, you will need to know where you installed VLC; the default is '''C:\Program Files\VideoLAN\VLC'''. So to start VLC, type
+
To run VLC, you will need to know where you installed VLC; the default is '''<code>{{Path to VLC|windows|dir=y}}</code>'''. So to start VLC, type the full path to VLC and the options:
  "C:\Program Files\VideoLAN\VLC\VLC.exe" ''options''
+
  {{Path to VLC|windows}} ''options''
 
replacing ''options'' with the name of the file to play and its options.
 
replacing ''options'' with the name of the file to play and its options.
  
== Mac OSX ==
+
== macOS ==
You can run VLC on Mac OS X using a terminal application, such as '''Terminal.app''' in '''/Applications/Utilities'''. In the terminal window type
+
You can run VLC on [[macOS]] using a terminal application, such as '''Terminal.app''' in '''/Applications/Utilities'''. In the terminal window type
  ../VLC.app/Contents/MacOS/VLC ''options''
+
  {{Path to VLC|mac}} ''options''
 
replacing ''options'' with VLC options, commands, the name of the file to play, and so on.
 
replacing ''options'' with VLC options, commands, the name of the file to play, and so on.
  
To suppress the launch of any Mac-like interface, <u>you have to add</u> the Option '-I' or '--intf' followed by the interface you want to use instead.<br>
+
To suppress the launch of any Mac-like interface, <u>you have to add</u> the Option <code>-I</code> or <code>--intf</code> followed by the interface you want to use instead.<br>
 
Available interfaces are:
 
Available interfaces are:
 
* ''rc'' (remote control)
 
* ''rc'' (remote control)
 
* ''ncurses'' (command-line-gui)
 
* ''ncurses'' (command-line-gui)
* ''http'' (web interface, usually on port [http://localhost:8080 8080])&mdash;this interface will prevent VLC from appearing even in the Dock.
+
* ''http'' (web interface, usually on [[port]] 8080)—this interface will prevent VLC from appearing even in the Dock.
  
In older versions you could replace the "VLC" at the end of the path with "clivlc" to suppress the launch of any Mac-like interface.
+
In older versions you could replace the "VLC" at the end of the path with "[[clivlc]]" to suppress the launch of any Mac-like interface.
  
 
== Linux/Unix ==
 
== Linux/Unix ==
To get a linux terminal, you should probably run Konsole or Xterm. The terminal normally looks like a $ or a %.<br>
+
How to get a Linux terminal varies by distribution (for any desktop setup it will be somewhere in the applications; these are merely shortcuts). If you use Ubuntu or Linux Mint, gnome-terminal can be opened with the key combination <kbd>Ctrl+Alt+T</kbd>. If you use RHEL/Fedora/CentOS, gnome-terminal can be opened by right-clicking on the desktop and selecting <samp>Open terminal</samp>.
If you are logged in as a root user (generally a bad idea) it will probably be a #.<br>
+
 
 +
By convention:
 +
* The '''standard user''' prompt may appear as <samp>$</samp> or <samp>%</samp> or something else.<br>
 +
* The '''root user''' prompt is represented with a <samp>#</samp>. This is an indication that you must either log in as root (potential security risk) or prefix the command with <code>sudo</code> and enter your password.<br>
 
To run VLC, you can normally type
 
To run VLC, you can normally type
  vlc ''options''
+
  {{Path to VLC|linux}} ''options''
 
replacing ''options'' with the name of the file to play and its options.
 
replacing ''options'' with the name of the file to play and its options.
  
 
[[Category:Documentation]] [[Category:Coding]]
 
[[Category:Documentation]] [[Category:Coding]]

Latest revision as of 22:15, 18 March 2019

This page describes how to access the terminal and start VLC in it.

A terminal is a text-based way to run programs. It is normally pre-installed on your computer. The command prompt may also be called the "Command Prompt", "Console", "Terminal", "MS-DOS Prompt", or something similar.

Running VLC from the terminal gives you access to many commands and features in VideoLAN which you would not otherwise have: see the VLC command-line help page to find out more about options from the command line.

Note that % is used on many of the examples on the VLC Wiki to represent the prompt, so you don't need to type that in.
Depending on your operating system, the prompt could appear as a >, %, $ or # symbol. Read on for a detailed explanation.

Tip: For extended command-line work (or play) it may be worth changing to the directory of VLC. Most command-line interpreters will understand vlc or vlc.exe to be the program in that directory.

Windows

In Windows, this is called the command prompt. To open the command prompt:

  • Click on the Start Menu and select Run.
  • In the Run box, type cmd (or command for older versions of Windows) and press enter.

The command prompt will look something like this:

C:\>

To run VLC, you will need to know where you installed VLC; the default is "%PROGRAMFILES%\VideoLAN\VLC". So to start VLC, type the full path to VLC and the options:

"%PROGRAMFILES%\VideoLAN\VLC\vlc.exe" options

replacing options with the name of the file to play and its options.

macOS

You can run VLC on macOS using a terminal application, such as Terminal.app in /Applications/Utilities. In the terminal window type

/Applications/VLC.app/Contents/MacOS/VLC options

replacing options with VLC options, commands, the name of the file to play, and so on.

To suppress the launch of any Mac-like interface, you have to add the Option -I or --intf followed by the interface you want to use instead.
Available interfaces are:

  • rc (remote control)
  • ncurses (command-line-gui)
  • http (web interface, usually on port 8080)—this interface will prevent VLC from appearing even in the Dock.

In older versions you could replace the "VLC" at the end of the path with "clivlc" to suppress the launch of any Mac-like interface.

Linux/Unix

How to get a Linux terminal varies by distribution (for any desktop setup it will be somewhere in the applications; these are merely shortcuts). If you use Ubuntu or Linux Mint, gnome-terminal can be opened with the key combination Ctrl+Alt+T. If you use RHEL/Fedora/CentOS, gnome-terminal can be opened by right-clicking on the desktop and selecting Open terminal.

By convention:

  • The standard user prompt may appear as $ or % or something else.
  • The root user prompt is represented with a #. This is an indication that you must either log in as root (potential security risk) or prefix the command with sudo and enter your password.

To run VLC, you can normally type

vlc options

replacing options with the name of the file to play and its options.