- Convert low-quality MP3 files to high quality custom bitrate
- Cross platform compatibility with FFmpeg
- Install FFmpeg
sudo apt-get install ffmpeg- Compile the program
g++ -o wave_wizard main.cpp WaveWizard.cpp./wave_wizard <input_file> <output_file> <bitrate><input_file>: Path to low-quality MP3 file<output_file>: Name of high-quality output file<bitrate>: Desired bitrate in kbps (e.g., 192)
- Basic conversion:
./wave_wizard input.mp3 output.mp3 192- Higher quality:
./wave_wizard song.mp3 high_quality.mp3 320This project is licensed under the MIT License.