INSTALL.win32
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:5k
源码类别:

midi

开发平台:

Unix_Linux

  1. INSTALL file for the Windows 2k/XP/Vista/Seven version of the VLC media player
  2. Running VLC
  3. ===========
  4. If you are using a binary release from videolan.org or if you have already built
  5. VLC (see below), just run 'vlc.exe'.
  6. You can also run VLC from a dos command box, in which case you'll be able
  7. to use the command line arguments. You can obtain a list of these command
  8. line arguments by typing 'vlc --help' or 'vlc --help --advanced'.
  9. To store a debug log of the current VLC session, you can use
  10. 'vlc -vvv --extraintf=logger'. You will end-up with a vlc-log.txt file in
  11. your current directory.
  12. Additional documentation is available at http://www.videolan.org/doc/ and http://wiki.videolan.org/.
  13. Building VLC from the source code
  14. =================================
  15. If you want to build VLC from sources, you can do it in several ways:
  16. - On GNU/Linux, using the mingw32 cross-compiler.
  17.   This method is preferred over all the others.
  18. - natively on Windows, using MSYS+MINGW (www.mingw.org)
  19.   (MSYS is a minimal build environment to compile Unixish projects under
  20.   windoze. It provides all the common Unix tools like sh, gmake...)
  21.   Please note that the gettext utilities are not included in the default
  22.   MSYS/MINGW packages so you won't be able to build VLC with i18n support.
  23. UNSUPPORTED METHODS
  24. -------------------
  25. - natively on Windows, using cygwin (www.cygwin.com) with or without the
  26.   POSIX emulation layer. This is the preferred way to compile vlc if you want
  27.   to do it on Windows.
  28.   Read http://wiki.videolan.org/Win32CompileCygwinNew to have a complete HOWTO
  29. - natively on Windows, using Microsoft Visual Studio. This will not work.
  30. Getting the right compiler tools
  31. ================================
  32. - cross-compiling with mingw32:
  33. You first need to download a GNU/Linux cross-compiler version of mingw32.
  34. For Debian GNU/Linux users, you can use the mingw32, mingw32-binutils and
  35. mingw32-runtime packages.
  36. For Fedora users, you can use mingw-binutils, mingw-gcc-core, mingw-gcc-g++
  37. For MingW and Cygwin, please refer to our Wiki:
  38. - http://wiki.videolan.org/Win32CompileMSYS
  39. - http://wiki.videolan.org/Win32CompileCygwin
  40. Getting the additional libraries
  41. =================================
  42. VLC depends on many other libraries to provide some features like most of the codecs.
  43. Usually, you don't want to compile those by yourself, so use pre-compiled ones.
  44. * We also provide a package with all the libraries already compiled so it is
  45.   actually really easy to compile a full-featured version of vlc (these compiled
  46.   libraries will only work with mingw or cygwin):
  47.   http://download.videolan.org/pub/testing/win32/contrib-200xxxxx-win32-bin-gcc-x.x.x-only.tar.bz2
  48.   (Check out for more recent versions at the same location). 
  49.   All you need to do is extract it in your root directory (the include files
  50.   and libraries will be put in /usr/win32). You can do this with the following
  51.   command: 
  52.     tar xjvf contrib-20060330-win32-bin-gcc-3.4.5-only.tar.bz2 -C /
  53.   Please note the "-C /".
  54. * An automated way of building the contrib libraries is provided in 
  55.   extra/contrib. It will download, configure and build the libraries.
  56.   See the extras/contrib/README for more info.
  57. Configuring the build
  58. =====================
  59. Once you've got all the files you need in place, you need to configure the
  60. build with the `./configure' script.
  61. I'll assume that you are using the pre-compiled 3rd party libraries we are
  62. providing and that they are in /usr/win32.
  63. If you are cross-compiling from Debian, you can use this:
  64.   sh extras/package/win32/configure-mingw.sh
  65. If you are compiling with MSYS/MINGW, then you can use this:
  66.   sh extras/package/win32/configure-msys.sh
  67. If you are using cygwin, you should build VLC without the POSIX emulation layer.
  68. Use this:
  69.   sh extras/package/win32/configure-cygwin.sh
  70. See `./configure --help' for more information.
  71. Actually Compiling the VLC source
  72. =================================
  73. Once configured, to build VLC, just run `make'.
  74. Once the compilation is done, you can either run VLC directly from the source
  75. tree or you can build self-contained VLC packages with the following
  76. 'make' rules:
  77.   make package-win32-base
  78.    will create a subdirectory named vlc-x.x.x with all the binaries
  79.    'stripped' (ie. without any debugging symbols).
  80.   make package-win32-zip
  81.    Same as above but will package the directory in a zip file.
  82.   make package-win32
  83.    Same as above but will also create an auto-installer package. You will need
  84.    to have NSIS installed in its default location for this to work.
  85. Well done, now you're ready to use VLC!
  86. =======================================