Codebase list vlevel / 59e05b3
New upstream snapshot. Debian Janitor 1 year, 6 months ago
5 changed file(s) with 50 addition(s) and 35 deletion(s). Raw diff Collapse all Expand all
0 #VLevel 0.5.1
0 # VLevel 0.5.1
11
2 ##What is VLevel?
2 ## What is VLevel?
33
44 VLevel is a tool to amplify the soft parts of music so you don't
55 have to fiddle with the volume control. It looks ahead a few
77 clipping. Because the volume is changed gradually, "dynamic
88 contrast" is preserved.
99
10 **This repository is a fork of the original vlevel code** since
11 the last release of the original source is from 2004.
12 Although this, the code is robust and it works pretty much
13 unmodified nowadays. We imported form the old svn repository and
14 added a new module in order to use it as a JACK client. After several
15 months of test in a working production (a 24/7 broadcasting environment)
16 we can confirm the software is reliable.
10 **This repository is a fork of the original vlevel code** since the
11 last release of the [original source](http://vlevel.sourceforge.net/)
12 is from 2004. Although this, the code is robust and it works pretty
13 much unmodified nowadays. We imported from the
14 [old CVS repository](http://vlevel.cvs.sourceforge.net/viewvc/vlevel/vlevel/)
15 and added a new module in order to use it as a JACK client. After
16 several months of test in a working production (a 24/7 broadcasting
17 environment) we can confirm that the software is reliable.
1718
18 ##What are the supported platform?
19 ## What are the supported platforms?
1920
20 We known VLevel to works in Linux and OSX Environments. We cannot at this moment
21 test it on other platform, but we encourage you to collaborate
21 We know VLevel to work in Linux and OSX environments. At this moment
22 we cannot test it on other platforms, but we encourage you to
23 collaborate.
2224
23 ##How do I install VLevel?
25 ## How do I install VLevel?
2426
25 See the file INSTALL. For the impatient: `sudo make install`.
27 See the file [INSTALL](INSTALL). For the impatient: `sudo make install`
2628
27 ##How do I use VLevel?
29 ## How do I use VLevel?
2830
29 Original VLevel is a filter, meaning you pipe raw data to it, and it outputs
30 the leveled data. For example:
31 Original VLevel is a filter, meaning you pipe raw CDDA
32 ([Compact Disc Digital Audio](https://en.wikipedia.org/wiki/Compact_Disc_Digital_Audio))
33 data to it, and it outputs the leveled data.
34
35 Example:
3136
3237 vlevel-bin < in.cdda > out.cdda
3338
3439 There are options to control the length of the look-ahead buffer,
3540 the strength of the effect, and the maximum amplification, as well
36 as the format of the raw data. Type "vlevel-bin --help" for
41 as the format of the raw data. Type `vlevel-bin --help` for
3742 details.
3843
39 Vlevel works also as a JACK client. for Example:
44 VLevel works also as a
45 [JACK Audio Connection Kit](http://jackaudio.org/) client.
46
47 For example
4048
4149 vlevel-jack --length 22050 --max-multiplier 20 --strength 0.8
4250
4351 will create 2 capture ports and 2 playback ports on the JACK graph
4452 that can be used in combination with any other JACK client.
4553
46 VLevel also works as a LADSPA plugin. See http://www.ladspa.org for
47 a lists of hosts that VLevel can plug into.
54 VLevel also works as a LADSPA plugin. See the
55 [Linux Audio Developer's Simple Plugin API website](http://www.ladspa.org/)
56 for a lists of hosts that VLevel can plug into.
4857
49 ##What other features are planed?
58 ## What other features are planed?
5059
5160 a Lv2 Plugin and a GUI (especially for vlevel-jack)
5261
53 ##Can I distribute VLevel?
62 ## Can I distribute VLevel?
5463
55 Please do. VLevel is licenced under the GPL, for more information,
56 see the COPYING file.
64 Please do. VLevel is licenced under the GNU Lesser General Public
65 License (LGPL), for more information, see the [COPYING](COPYING) file.
5766
58 ##Where can I get more info?
67 ## Where can I get more info?
5968
60 There is documentation in the docs directory. Documentation,
61 help, and more are available from the website: http://vlevel.sourceforge.net
69 There is documentation in the [docs](docs/) directory. Documentation,
70 help, and more are also available from the
71 [original project's website](http://vlevel.sourceforge.net/).
6272
63 Also support http://www.radiocicletta.it, our beloved webradio :3
64
73 Also support http://www.radiocicletta.it/, our beloved webradio :3
3232
3333 Can I distribute VLevel?
3434
35 Please do. VLevel is licenced under the GPL, for more information,
35 Please do. VLevel is licenced under the LGPL, for more information,
3636 see the COPYING file.
3737
3838 Where can I get more info?
0 vlevel (0.5.1+git20150223.1.e4f2025-1) UNRELEASED; urgency=low
1
2 * New upstream snapshot.
3
4 -- Debian Janitor <janitor@jelmer.uk> Mon, 17 Oct 2022 23:52:30 -0000
5
06 vlevel (0.5.1-4) unstable; urgency=medium
17
28 [ Helmut Grohne ]
119119
120120 void Help()
121121 {
122 cerr << "VLevel v0.5" << endl
122 cerr << "VLevel v0.5.1" << endl
123123 << endl
124124 << "usage:" << endl
125 << "\tvlevel-bin [options] < infile > outfile" << endl
125 << "\tvlevel-bin [options] < infile.cdda > outfile.cdda" << endl
126126 << endl
127127 << "options: (abbreviations also work)" << endl
128128 << "\t--length num" << endl
9191
9292 void vlevel_help()
9393 {
94 cerr << "VLevel v0.5 JACK edition" << endl
94 cerr << "VLevel v0.5.1 JACK edition" << endl
9595 << endl
9696 << "usage:" << endl
9797 << "\tvlevel-bin [options] < infile > outfile" << endl
169169 undo = true;
170170 } else if(option == "help" || option == "h") {
171171 vlevel_help();
172 return 0;
172 exit(0);
173173 } else {
174174 cerr << cmd.GetProgramName() << ": unrecognized option " << option << endl;
175175 vlevel_help();