https://github.com/charlie0129/bitrate-visualizer
Visualize the bitrate distribution of a VBR audio file in realtime.
https://github.com/charlie0129/bitrate-visualizer
audio-visualizer bitrate encoder visualization
Last synced: 10 months ago
JSON representation
Visualize the bitrate distribution of a VBR audio file in realtime.
- Host: GitHub
- URL: https://github.com/charlie0129/bitrate-visualizer
- Owner: charlie0129
- Created: 2023-02-06T17:38:24.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-09-14T08:42:44.000Z (over 2 years ago)
- Last Synced: 2025-06-14T06:03:18.526Z (12 months ago)
- Topics: audio-visualizer, bitrate, encoder, visualization
- Language: JavaScript
- Homepage:
- Size: 256 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bitrate Visualizer
Bitrate Visualizer is a tool to visualize the bitrate of an audio file in realtime, so you can inspect how the audio encoder allocates bitrate at any instant.


Q: Why the prebuilt binary is so big?
A: I bundled `ffprobe` in the app so you don't need to install it manually. Over 90% of the size is from `ffprobe`. The app itself is built using Tauri, which has only a few megabytes in size. It is possible to build one without `ffprobe` to significantly reduce disk size footprint but that would sacrifice convenience since the user need to install `ffprobe` by himself.