You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This Python script creates a video visualization of an audio file's waveform. It generates an MP4 video where a white waveform moves across a black background, synchronized with the audio playback.
4
+
5
+
## Features
6
+
7
+
- Supports various audio input formats (WAV, MP3, etc.)
8
+
- Creates a smooth, animated waveform visualization
9
+
- Outputs a high-quality MP4 video
10
+
- Handles both mono and stereo audio inputs
11
+
12
+
## Requirements
13
+
14
+
- Python 3.6+
15
+
- Required Python packages are listed in `requirements.txt`
16
+
17
+
## Installation
18
+
19
+
See the [Installation Guide](INSTALL.md) for detailed setup instructions.
20
+
21
+
## Usage
22
+
23
+
1. Run the script:
24
+
```
25
+
python waveform_visualizer.py
26
+
```
27
+
2. When prompted, enter the path to your audio file.
28
+
3. Enter a name for the output MP4 file (or press Enter to use the default "output.mp4").
29
+
4. The script will process the audio and create the visualization video.
30
+
31
+
## License
32
+
33
+
This project is open-source and available under the MIT License.
34
+
35
+
## Contributing
36
+
37
+
Contributions, issues, and feature requests are welcome. Feel free to check issues page if you want to contribute.
0 commit comments