|
|
|
The Sound Normalizer improves and regains a quality of Mp3 and Wav (PCM 8, 16, 24, 32 bits, DSP, GSM, IMA ADPCM, MS ADPCM, AC3, MP3, MP2, OGG, A-LAW, u-LAW) files. It is reached by the test and normalization of the level volume of Mp3 and Wav files.
It contains batch processor and it allows to fulfill the batch test, batch normalization and batch converting of Mp3 and Wav files.
The level of volume and normalization is represented graphically and in percentage.
The wav normalization and test is fulfilled on a peak level (Peak Normalization).
The mp3 normalization and test is fulfilled on an average level (RMS normalization).
The mp3 normalization is fulfilled under standard Replay Gain.
The Mp3 Normalizer allows to modify the volume of a scanned file directly without usage tags.
The Sound Normalizer also allows editing ID3 tags (build-in Mp3 ID3 Tag Editor) with support for ID3v1 and ID3v2 tags, converting Wav to Mp3 files and Mp3 to Wav files (build-in Wav/Mp3 Converter) using Lame MP3 Encoder 3.97, listening Mp3 and Wav files using the build-in audio player.
You can quickly set and manage the parameters for conversion with basic and alternative presets.
Here are some key features of "Sound Normalizer":
Advanced Wav Normalizer and Mp3 Normalizer;
Batch processor for Mp3 and Wav (PCM 8, 16, 24, 32 bits, DSP, GSM, IMA ADPCM, MS ADPCM, AC3, MP3, MP2) files;
Batch normalizing for Mp3 and Wav (PCM 8, 16, 24, 32 bits, DSP, GSM, IMA ADPCM, MS ADPCM, AC3, MP3, MP2) files;
Batch converting for Mp3 and Wav files (PCM 8, 16, 24, 32 bits, DSP, GSM, IMA ADPCM, MS ADPCM, AC3, MP3, MP2) files;
Batch test for Mp3 and Wav (PCM 8, 16, 24, 32 bits, DSP, GSM, IMA ADPCM, MS ADPCM, AC3, MP3, MP2) files;
Converting Mp3 to Wav files using Lame MP3 Encoder 3.97;
Converting Wav to Mp3 files using Lame MP3 Encoder 3.97;
Resampling for Mp3 files;
Support various encoder quality/speed modes;
Support ID3 v1 and v2 tag (Artist/Title/Genre and so on);
|
|
|
body treament volume 2
mp3 normalizer
disk volume
wave normalizer
wav normalizer
-------------------------
|
|
MP3Producer DE is a special version of MP3Producer created for German-speaking users. The program interface and Help file are in the German language. MP3Producer is an ideal solution for converting (grabbing) your audio CD collection to a variety of the most popular compressing audio formats such as MP3, WAV, OGG, WMA. Besides with this software you can easily convert WAV to OGG, WAV to MP3, WAV to WMA; MP3 to WAV, OGG to WAV and WMA to WAV.
MP3Producer has FreeDB function with customizable settings and search options that helps you to find on the Internet the info on the CD you are interested in. MP3Producer supports different formats of MP3 (MPEG1 and MPEG2) and all bitrates (8-320 kbps, constant, variable), OGG (constant, average and variable bitrates) and WMA (constant and variable). Flexible settings allow to define the quality of MP3, WAV, OGG and WMA files. There is an option of filename generation using the ID3 tag: with information such as artist and album name, track title, genre and track number you can create filename and folder structure.
With the help of the Extract CD Segment function you can play and copy to MP3, WAV, WMA or OGG file any part of the CD either a single track or several tracks together or a part of the track. MP3Producer has fast ripping speed which exceeds your expectation and saves your time greatly. With the handy intuitive interface and the program design you can use it with ease even for the first time. All these features make MP3Producer the perfect tool for both new and experienced users!
Sound Normalizer: http://kanssoftware.com/SoundNormalizer.exe
MP3Producer DE: http://www.mp3developments.com/mp3producerde.exe |
|
Gets the 4-byte 32-bit binary volume serial number of a Windows
disk drive assigned when it is formatted to provide and almost unique id.
Don't confuse this with the volser(, the string name,
or the manufacturer's disk serial number assigned to a hard drive at the factory.
Uses JNI and C++ native code.
Consists of java and JNI you include in your own code.
You can test with
C:
CD \com.mindprod.volser
java.exe com.mindprod.volser.Volser
and ensuring nativevolser.dll is on the path, e.g. in the
current directory. YOU MUST MANUALLY EXTRACT
NATIVEVOLSER.DLL and put it on the path. See
http://mindprod.com/jgloss/path.html
To use getVolser, you need three pieces of code in your
class:
1. an import,
2. a static init to load the JNI library
3. a call to the getVolser native method
i.e.
import com.mindprod.volser.Volser;
...
static
{
// get DLL loaded from somewhere on java.library path.
System.loadLibrary( "nativevolser" );
// if have troubles change this code to use
// System.load( "E:\\com\\mindprod\\volser\\nativevolser.dll" );
/**
* test harness
*
* @param args not used
*/
public static void main( String[] args )
{
// Needs drive letter with colon and trailing backslash
final int volser = Volser.getVolser( "C:\\" );
System.out.println( "4-byte Volume serial number for drive C: is " + Integer.toHexString( volser ) );
}
}
Volser does nothing much by itself, other than a debugging
test harness to demonstrate getVolser method.
Volser: http://mindprod.com/zips/volser11.zip
|
|
|
|