diff options
| author | vovanec <vovanec@90c681e8-e032-0410-971d-27865f9a5e38> | 2007-06-23 16:48:01 +0000 |
|---|---|---|
| committer | vovanec <vovanec@90c681e8-e032-0410-971d-27865f9a5e38> | 2007-06-23 16:48:01 +0000 |
| commit | 2d622fd9bcb8da9dd3f3206e296cd6a701fc9d12 (patch) | |
| tree | f92135e6cb831e46336dfd4ade47e03ef3a19ac5 /README | |
| parent | 4b6a6720805c585c89f44fd276b3ace8670514d9 (diff) | |
| download | qmmp-2d622fd9bcb8da9dd3f3206e296cd6a701fc9d12.tar.gz qmmp-2d622fd9bcb8da9dd3f3206e296cd6a701fc9d12.tar.bz2 qmmp-2d622fd9bcb8da9dd3f3206e296cd6a701fc9d12.zip | |
moved into qmmp dir
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@12 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'README')
| -rw-r--r-- | README | 63 |
1 files changed, 63 insertions, 0 deletions
@@ -0,0 +1,63 @@ +Qmmp - Qt-based multimedia player + +This program is an audio-player, written with help of Qt library. + +Main opportunities: +- unpacked winamp skins support +- plugins support +- MPEG1 layer 1/2/3 support +- Ogg Vorbis support +- native FLAC support +- Musepack support +- AlSA sound output +- JACK sound output + +Requirements: +- OS GNU Linux +- Qt >= 4.2 +- MAD +- Ogg Vorbis +- ALSA >= 1.0.1 +- TagLib >= 1.4 +- Flac >= 1.1.3 (Optional) +- libmpcdec >= 1.2.6 (Optional) +- Jack >= 0.102.5 (Optional) + +Build: +qmake-qt4 && make + +Installation: +make install INSTALL_ROOT=/usr/local + +Executable: +./bin/qmmp + +If someone module doesn't build or doesn't needed you can disable it +in qmmp.pri file - just comment corresponding line( symbol '#'). +Attention! By default all modules are enabled. + +Also you can use cmake for building and installation (for testing only). + +Configure: +cmake ./ + +Build: +make + +Installation: +make install + +If someone module doesn't build or doesn't needed you can disable it by running: +cmake ./ -D USE_JACK:BOOL=FALSE +This command will disable JACK Plugin for example. Available options: +USE_MAD, USE_MPC, USE_VORBIS, USE_FFMPEG, USE_FLAC, USE_ALSA, USE_JACK. +Also you can use ccmake for changing plugins configuration. +By default programm will be installed in /usr/local. You can change default path by running: +cmake ./ -D CMAKE_INSTALL_PREFIX=custom_path + +Attention! By default all modules are enabled. + + +All patches, bug reports, ideas etc. send to forkotov02@hotmail.ru. + + |
