https://github.com/serenepixel/WaveWizard
A simple music :musical_note: tool to convert low quality MP3 files to high quality custom bitrate
https://github.com/serenepixel/WaveWizard
bitrate ffmpeg music songs
Last synced: 8 months ago
JSON representation
A simple music :musical_note: tool to convert low quality MP3 files to high quality custom bitrate
- Host: GitHub
- URL: https://github.com/serenepixel/WaveWizard
- Owner: serenepixel
- License: mit
- Created: 2024-08-17T13:39:53.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-25T12:09:53.000Z (over 1 year ago)
- Last Synced: 2025-09-13T21:46:47.337Z (9 months ago)
- Topics: bitrate, ffmpeg, music, songs
- Language: C++
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WaveWizard :musical_note:
### Features
- Convert low-quality MP3 files to high quality custom bitrate
- Cross platform compatibility with FFmpeg
### Installation
1. Install FFmpeg
```bash
sudo apt-get install ffmpeg
```
2. Compile the program
```bash
g++ -o wave_wizard main.cpp WaveWizard.cpp
```
### Usage
```bash
./wave_wizard
```
### Command-Line Arguments
- ``: Path to low-quality MP3 file
- ``: Name of high-quality output file
- ``: Desired bitrate in kbps (e.g., 192)
### Examples
1. Basic conversion:
```bash
./wave_wizard input.mp3 output.mp3 192
```
3. Higher quality:
```bash
./wave_wizard song.mp3 high_quality.mp3 320
```
### License
This project is licensed under the [MIT License](LICENSE).