File: README.md

package info (click to toggle)
kwave 25.04.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 23,272 kB
  • sloc: cpp: 56,173; xml: 817; perl: 688; sh: 57; makefile: 11
file content (151 lines) | stat: -rw-r--r-- 4,838 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# Kwave
## a sound editor built on the KDE Frameworks

It is hosted by [KDE](https://invent.kde.org/multimedia/kwave) and
mirrored on [SourceForge](https://sourceforge.net/projects/kwave/).
You are welcome to visit the
[Kwave homepage](http://kwave.sourceforge.net) for details.

If you are interested what has been done and what has to be done, then
look at the files "CHANGES" and "TODO" included in this package.

The project is developed and published under the GNU GENERAL PUBLIC LICENSE
(Version 2, from June 1991), take a look at the file "GNU-LICENSE" included
in the source package.

## Building

It's quite simple. First clone the source repository then build it in a
separate build directory.
For example:

``` bash
git clone https://invent.kde.org/multimedia/kwave.git
cd kwave
mkdir build
cd build
cmake ..

make
make install
```

## Flatpak

To build a flatpak, first install flatpak-builder
(`flatpak install org.flatpak.Builder`), then in the source directory run:
`flatpak run org.flatpak.Builder build --user --install-deps-from=flathub --force-clean --ccache --install .flatpak-manifest.json`.
If you already have the right version of `org.kde.Platform`and `org.kde.Sdk`,
you can omit `--install-deps-from=flathub`. You can then run the flatpak with:
`flatpak run --user org.kde.kwave`.

## Requirements

Please note that required packages for compiling Kwave vary between
different distributions and versions. It is practically impossible
to give a complete list of packages and versions!

Beside the standard tools that most KDE projects require like cmake
and a C++ compiler, you will need a few other libraries:

- libmad (for MP3 import)
- id3lib (for MP3 tag import, see www.id3lib.org)
- libogg (for Ogg/Vorbis import/export)
- libvorbis (for Ogg/Vorbis import/export)
- flac (for FLAC import/export)
- fftw (for Sonagram plugin / FFT)
- pulseaudio (for record/playback via PulseAudio)
- samplerate (for sample rate conversion)

Qt:
  - qtconcurrent
  - qtcore
  - qtmultimedia
  - qtwidgets

KDE Frameworks:
  - extra-cmake-modules
  - karchive
  - kcompletion
  - kconfig
  - kconfigwidgets
  - kcoreaddons
  - kcrash
  - kdbusaddons
  - kdoctools
  - ki18n
  - kiconthemes
  - kio
  - ktextwidgets
  - kxmlgui
  - kwidgetsaddons

known distributions / architectures:
------------------------------------

see the Kwave homepage: http://kwave.sf.net/distributions.html

Compilation might also work on many other distributions and different
versions of compilers and libraries, or even on different architectures.

So if you have success in compiling and using kwave under a different system,
please let me know !

If the program does NOT compile, please let me know too - and/or consider
an update of your system if your packages are older than those mentioned
above.

currently tested distributions:
-------------------------------------------

see http://kwave.sourceforge.net/distributions.html

## Known Problems / Some Hints

* missing files:
  -------------
  Depending on your distribution, one or more components might require
  additional packages. Often you will need the "-devel" packages for
  building (only) Kwave, e.g. it might not be sufficient to have the
  package "libaudiofile" installed, additionally the corresponding package
  "audiofile-devel" might be required too!

  Hint for SuSE users:
  => on CD1 (or on the DVD1) there is a file named "ARCHIVES.gz".
     If you want to find out which package does contain a missing program or
     file, you can do the following:

     gzip -dc ARCHIVES.gz | grep name_of_the_missing_file

* warnings about invalid character set when creating online documentation:
  -----------------------------------------------------------------------
  This is quite "normal", because some tools are not aware of the
  UTF-8 encoding that is used in the .docbook and the .po files.

* hint: compiling in parallel with distcc:
  ---------------------------------------
  I successfully compiled Kwave on many systems with the following
  method:

  ```
  CC=distcc CXX="distcc g++" cmake ...your parameters...
  make -j <JOBS>
  ```

  (replace `<JOBS>` with a number of parallel jobs, for example the
   number of CPUs on all hosts + number of distcc hosts)

## History

This project was started by Martin Wilz in summer 1998 and has been
developed and improved by him and some other people. In November 1999 I started
to fix some little bugs here and there and stepped into the source code of
the program deeper and deeper. Up to today I have extended, rewritten or
revised nearly every component of the program and spend much time on it.
Since summer 1999 I have taken over the project leadership and I am still
working on it.

So good luck, and feel free to keep me informed about bugs and wishes...

   Thomas Eschenbacher <Thomas.Eschenbacher@gmx.de>