{"id":15032180,"url":"https://github.com/maxmarsc/audeye","last_synced_at":"2025-04-09T21:23:01.586Z","repository":{"id":39515074,"uuid":"474016556","full_name":"maxmarsc/audeye","owner":"maxmarsc","description":"CLI tool to visualize the content of an audio file","archived":false,"fork":false,"pushed_at":"2024-02-24T14:00:11.000Z","size":272,"stargazers_count":37,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-23T23:15:39.243Z","etag":null,"topics":["audio","cli","dsp","metadata","rust","spectrogram","wav","waveform"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maxmarsc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-25T13:17:33.000Z","updated_at":"2024-11-17T10:32:07.000Z","dependencies_parsed_at":"2025-02-15T21:32:45.615Z","dependency_job_id":"60f33840-e092-4bdd-8615-f016a411e220","html_url":"https://github.com/maxmarsc/audeye","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxmarsc%2Faudeye","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxmarsc%2Faudeye/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxmarsc%2Faudeye/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxmarsc%2Faudeye/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxmarsc","download_url":"https://codeload.github.com/maxmarsc/audeye/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248112994,"owners_count":21049767,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["audio","cli","dsp","metadata","rust","spectrogram","wav","waveform"],"created_at":"2024-09-24T20:17:40.261Z","updated_at":"2025-04-09T21:23:01.565Z","avatar_url":"https://github.com/maxmarsc.png","language":"Rust","readme":"# Audeye\n\n\u003cp align=\"center\"\u003e\n    \u003cb\u003e 🔊 💻 👁️Audio content visualization tool\u003c/b\u003e\n\u003c/p\u003e\n\n![Demo](.github/images/audeye_0_2_0.gif)\n\nAudeye is a terminal tool to visualize audio content, written in Rust\n\n## Features\n - wav / aif / flac / ogg-vorbis and many more (see : [libsndfile format compatibility v1.0.31](https://libsndfile.github.io/libsndfile/formats.html))\n - mono / stereo / 5.1 / 7.1 ... (up to 9 channels)\n - Waveform peak \u0026 RMS visualizer\n - Spectrogram visualizer\n - Signal normalization\n - Zoom and move inside both visualizers\n - Metadata display\n\n## Bindings\n - `space` : display bindings\n - `left arrow` / `right arrow` : navigate through panels\n - `j` / `k` : zoom out / in\n - `h` / `l` : move left / right\n - [`0`-`9`] : activate / deactivate display of the corresponding channel\n - `Esc` : reset channel layout\n\n## CLI arguments\n - `-n` : normalize the audio signal before displaying it (not channel aware)\n - `--fft-window-size`\n - `--fft-window-type` : `hanning` / `hamming` / `blackman` / `uniform`\n - `--fft-overlap`\n - `--fft-db-threshold` : minimum energy level to consider (in dB)\n - `--fft-padding-type` : `zeros` / `loop` / `ramp`\n\n### Paddings types\nThe padding type determine how to fill the sides of each FFT window when at the \nvery edges of the audio content\n - Zeros : fill with zeros\n - Ramp : fill with zeros and a small amplitude ramp to match the last/next sample\n - Loop : fill with the end/beginning of the audio file\n\n# Dependencies\nAudeye rely on Rust bindings to [libsndfile](https://github.com/libsndfile/libsndfile)\n\n## Debian / Ubuntu\n```\napt-get install libsndfile1-dev\n```\n\n# Installation\n```\ncargo install audeye\n```\n\n# Build\n1. [Install Rust](https://www.rust-lang.org/tools/install)\n2. Install [libsndfile](#dependencies)\n2. Then run `cargo run \u003cAUDIO_FILE_PATH\u003e`\n\n## Development\nPlease consider audeye is still in early development, feedbacks are very welcome\n\n### Requirements\n - [cargo](https://doc.rust-lang.org/cargo/getting-started/installation.html)\n - [libsndfile](#dependencies)\n - [precommit](https://pre-commit.com/#install)\n - [clippy](https://github.com/rust-lang/rust-clippy)\n - [rustfmt](https://github.com/rust-lang/rustfmt)\n\n### Contributing\nIf you wanna contribute, either make a PR (for small changes/adds) or contact me\non twitter / discord if you wanna get involved more deeply\n - [Twitter](https://twitter.com/Groumpf_)\n - [Discord](https://discordapp.com/users/Groumpf#2353)\n\n### Milestone\n - [x] Waveform view\n - [x] Spectogram view\n - [x] Channels view navigation\n - [x] Channel naming (stereo, 2.1, 5.1, 7.1 ...)\n - [x] Zoom in/out\n - [x] Metadata view\n - [x] RMS and Peak in waveform view\n - [x] Option : normalize\n - [x] Option : FFT windows size and overlap\n - [x] Option :  FFT dB threshold\n - [x] Option : FFT window type\n - [x] Option : FFT side smoothing\n - [x] Unit tests\n - [ ] Optionnal labels on graphs\n - [ ] Option : FFT logarithmic scale\n - [ ] Option : Waveform envelope ?\n - [ ] More audio format support\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxmarsc%2Faudeye","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxmarsc%2Faudeye","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxmarsc%2Faudeye/lists"}