]> git.sesse.net Git - vlc/blob - FAQ
* ./doc/developer/decoders.xml: fixed a typo preventing compilation.
[vlc] / FAQ
1 Frequentely Asked Questions for VideoLAN Client
2 $Id: FAQ,v 1.5 2002/04/02 10:17:08 sam Exp $
3
4 1. Using VLC
5
6 1.1 How do I read a DVD ?
7 -----------------------
8 Just launch vlc and use the "open disc" command from the graphical
9 interface. In case of trouble, you may want to use the command line
10 interface :
11     vlc dvd:/dev/dvd
12
13 1.2 How do I read an encrypted DVD ?
14 ----------------------------------
15 It's exactly the same as for a normal DVD. You will need write access to
16 /dev/dvd, because of the key negociation process.
17
18 1.3 How do I switch to full screen display ?
19 ------------------------------------------
20 Press 'f' to toggle fullscreen mode. Note that not all video output
21 devices support full screen.
22
23 1.4 How do I hide the mouse cursor ?
24 ----------------------------------
25 It should disappear after a few seconds if you stop moving the mouse.
26
27 1.5 How do I use vlc if I don't want to install Gnome and all this
28 #@!£% *$@&§% !@# bloat ?
29 ---------------------------------------------------------------------------
30 You can run :
31     vlc --intf dummy myfile.mpg
32 Most commands are available from the command line, see vlc --help for
33 more information.
34
35 1.6 VLC eats my buffer cache, how to I use raw device ?
36 -----------------------------------------------------
37 If you don't know what is a raw device, don't even read this answer :-).
38 There is an experimental support for raw devices in libdvdcss. It needs
39 that you set up a raw device pointing to your DVD device (under Linux, 
40 use the "raw" utility). Then pass the raw device as second argument, for
41 instance :
42     vlc dvd:/dev/dvd@/dev/raw0
43
44 1.7 How do I use VLC as a client for VLS/VLMS streaming ?
45 -------------------------------------------------------
46 First you must set up a VLS or VLMS stream. Please refer to the
47 documentation of these programs. Then start VLC :
48     vlc udp:
49 You shouldn't need any option. If you're paranoid and want to control
50 everything, here is the exact syntax :
51     vlc udp:[<server>[:<server port>]][@[<bind address>][:<bind port>]]
52
53
54 2. Troubleshooting
55
56 2.1 When I start vlc, I don't have any interface coming...
57 -------------------------------------------------------
58 If you installed a binary package, make sure you also installed an
59 interface package such as vlc-gtk or vlc-qt. If you installed from
60 source, make sure the development package for gtk or qt is correctly
61 installed (often gtk-dev or gtk-devel) and recompile.
62
63 2.2 Clicking on "disc" in the interface doesn't do anything
64 -----------------------------------------------------------
65 Wait a few seconds. Key cracking can take much time on some discs. If it
66 still doesn't work, you can have a more verbose output using "vlc -vvvvv".
67 Here are a few things to check for :
68 * Did you install the libdvdcss package ?
69 * Do you have write access to your DVD device ? For instance :
70 chmod 666 /dev/hdc
71 * Does your kernel log contain line about your DVD device ?
72 * Do you have a link from /dev/dvd to your real DVD device ? For instance
73 ln -s hdc /dev/dvd
74
75 2.3 [REMOVED]
76 -------------
77
78 2.4 The video runs but the picture is distorted...
79 -----------------------------------------------
80 There is probably a problem with the output layer. There are several
81 ways of troubleshooting it. First, try with another output plug-in, for
82 instance :
83 vlc --vout sdl
84 vlc --vout x11
85 Second, change your screen depth and/or definition. It quite often helps.
86 Lastly, have a look at your XFree86 video driver (nVidia for instance
87 releases optimized drivers for its boards).
88
89 2.5 Video is choppy...
90 -------------------
91 Your system is too slow to decode all pictures. It might be that your
92 CPU basically isn't fast enough. It can also be that the subsystem is
93 misconfigured/misdriven. Here are some elements to improve speed :
94 * Turn on DMA on your DVD device, for instance :
95 hdparm -X34 -d1 /dev/dvd
96 * Upgrade to the latest XFree86 version and the latest driver for your
97 video board ; check that the xvideo plug-in is effectively used with
98 vlc -vvvv
99 * Kill other applications running...
100
101 2.6 Audio is choppy...
102 -------------------
103 This is not normal ; it is a known problem and is being investigated.
104
105 2.7 Audio and video are out of sync
106 -----------------------------------
107 This is not normal. Try using another output plug-in (for instance --aout dsp),
108 kill esd or artsd if they are running... This is a known problem and
109 is being investigated.
110
111 2.8 [REMOVED]
112 -------------
113
114 2.9 Sound volume is too low
115 ----------------------------
116 You can raise it with --volume commandline switch.
117
118
119 3. Ports and features
120
121 3.1 MacOS X port
122
123 3.1.1 Does VLC support the ATI DVD hardware acceleration cards ?
124 --------------------------------------------------------------
125 Currently it doesn't. We'd be glad to support them, but we lack technical
126 information on them.
127
128 3.2 Win32 port
129
130 3.2.2 When moving the focus to another window, VLC network input stops
131 working properly !
132 ---------------------------------------------------------------------------
133 This is a known problem with Win 95-class systems. Upgrade to an NT-class
134 system.