Difference between revisions of "VLC media player"
m (Style) |
m (french -> French) |
||
(One intermediate revision by the same user not shown) | |||
Line 13: | Line 13: | ||
Notable variants are: | Notable variants are: | ||
− | * {{ | + | * {{AUR|vlc-git}} - Development branch. |
If you want to play audio CDs, you should also install {{Pkg|libcddb}}. | If you want to play audio CDs, you should also install {{Pkg|libcddb}}. | ||
Line 22: | Line 22: | ||
Exec=/usr/bin/vlc %U | Exec=/usr/bin/vlc %U | ||
to: | to: | ||
− | Exec= LANGUAGE=fr /usr/bin/vlc %U | + | Exec=LANGUAGE=fr /usr/bin/vlc %U |
− | to switch VLC interface to | + | to switch VLC interface to French. |
== Skins == | == Skins == |
Revision as of 20:26, 24 June 2013
Template:Article summary start Template:Article summary text Template:Article summary end
From the project home page:
- VLC is a free and open source cross-platform multimedia player and framework that plays most multimedia files as well as DVD, Audio CD, VCD, and various streaming protocols.
Contents
Installation
Install vlc from the official repositories.
Notable variants are:
- vlc-gitAUR - Development branch.
If you want to play audio CDs, you should also install libcddb.
Language
It seems VLC does not offer an option to change language in its Preferences menu. But you can use the LANGUAGE= prefix. For instance, modify the /usr/share/applications/vlc.desktop
line:
Exec=/usr/bin/vlc %U
to:
Exec=LANGUAGE=fr /usr/bin/vlc %U
to switch VLC interface to French.
Skins
VLC can be "skinned" for a different look and feel. You can obtain new skins for VLC from http://www.videolan.org/vlc/skins.php.
Installation of skins is simple just download the skin you wish to use and copy it to:
~/.local/share/vlc/skins2
Open up VLC, click Tools > Preferences. When the preferences window opens up you should be in the "Interface" tab
Choose the "Use custom skin" radio button, and browse to the location of the downloaded skin.
Restart VLC for the change to take effect.
Web Interface
Run VLC with the parameter "--extraintf=http" to use both the desktop and web interface.
# vlc --extraintf=http
Or you can enable this feature in the UI by navigating to View > Add Interface > Web Interface.
VLC defaults to port 8080: http://127.0.0.1:8080
Edit /usr/share/vlc/lua/http/.hosts to allow remote connections. You will need to restart VLC in order for changes to take effect.
Control using hotkeys or cli
Install netcat-openbsd.
Get script at: http://crunchbang.org/forums/viewtopic.php?pid=112035%23p112035#p112035
Follow instructions in script to setup a socket for vlc.
Either run the script from the command line or register the script with keyboard shortcuts through your desktop.
Preventing multiple instances
The default settings for VLC is to open a new instance of the program for each file that is opened. This can be annoying if you are using VLC for something like playing your music collection. To remedy the problem you can do the following:
- Open VLC.
- Go to Tools > Preferences (
Ctrl+P
). - Go to the Interface tab and find the "Instances" section.
- Tick "Allow only one instance".
- Optionally tick "Enqueue files when in one instance mode". This will keep the current file playing and add any newly opened files to the current playlist.
Troubleshooting
PulseAudio lag
When using PulseAudio as the audio output module, you might encounter audio/video sync problems. These problems can usually be fixed by editing /etc/pulse/default.pa
or ~/.pulse/default.pa
to reflect the following changes. However, this can cause a new audio stuttering problem in some applications such as flash.
.ifexists module-udev-detect.so load-module module-udev-detect tsched=0 .else
Video broken or other issue after upgrade
Now and then VLC will have some issues with configuration even in minor releases. Before making bug reports, remove or rename your configuration located at ~/.config/vlc
and confirm whether the issue is still there.
Segmentation fault
When starting VLC you can get a segfault, a possible workaround to this is running the following:
# /usr/lib/vlc/vlc-cache-gen -f usr/lib/vlc/plugins
Then reinstall VLC.