{"id":19453538,"url":"https://github.com/eye-wave/wavetable-to-image","last_synced_at":"2025-09-14T07:31:03.582Z","repository":{"id":221233140,"uuid":"753808324","full_name":"eye-wave/wavetable-to-image","owner":"eye-wave","description":"This is a command-line tool that converts WAV files into images.","archived":true,"fork":false,"pushed_at":"2024-02-06T21:06:48.000Z","size":2370,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T10:20:37.010Z","etag":null,"topics":["audio","audio-analyser","audio-processing","audio-visualizer","image","image-processing","music","wavetable","wavetable-synthesizer","wavetable-visualizer"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eye-wave.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}},"created_at":"2024-02-06T20:38:12.000Z","updated_at":"2024-12-10T13:07:37.000Z","dependencies_parsed_at":"2024-02-06T22:04:06.454Z","dependency_job_id":null,"html_url":"https://github.com/eye-wave/wavetable-to-image","commit_stats":null,"previous_names":["eye-wave/wavetable-to-image"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/eye-wave/wavetable-to-image","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eye-wave%2Fwavetable-to-image","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eye-wave%2Fwavetable-to-image/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eye-wave%2Fwavetable-to-image/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eye-wave%2Fwavetable-to-image/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eye-wave","download_url":"https://codeload.github.com/eye-wave/wavetable-to-image/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eye-wave%2Fwavetable-to-image/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275076531,"owners_count":25401314,"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","status":"online","status_checked_at":"2025-09-14T02:00:10.474Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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","audio-analyser","audio-processing","audio-visualizer","image","image-processing","music","wavetable","wavetable-synthesizer","wavetable-visualizer"],"created_at":"2024-11-10T17:04:57.742Z","updated_at":"2025-09-14T07:31:03.236Z","avatar_url":"https://github.com/eye-wave.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wavetable to Image Converter\n![Static Badge](https://img.shields.io/badge/rust-000?style=for-the-badge\u0026logo=rust\u0026logoColor=fff)\n\n## Description\n*[Serum](https://xferrecords.com/products/serum/) can turn images into wavetables, but how would wavetables look as images?* ~ someone probably\n\nThis is a command-line tool that converts WAV files into images. It's useful for generating wavetable images for synths like [Serum](https://xferrecords.com/products/serum/). It generates them based on samples, not spectrum data. \n\n*Maybe i'll expand this cli in the future* so you could import images to synths like [Harmor](https://www.image-line.com/fl-studio-news/introducing-harmor/) too...\n\n### Examples\n![](./assets/fm-sine-sine.png)\n\n![](./assets/hyperwave.png)\n\n\n## Builting from source\n\nMake sure you have cargo and make installed. Clone this repository and run:\n\n```sh\nmake build\n```\n\nTo uninstall, remove `wavetable-to-image` from ~/.local/bin\n```sh\nrm ~/.local/bin/wavetable-to-image\n```\n\n\n## Usage\n\n```sh\nwavetable-to-image --input \u003cinput_wav_file\u003e --output \u003coutput_image_file\u003e -n \u003cskip\u003e\n```\n\n- `--input \u003cinput_wav_file\u003e`: Path to the input WAV file.\n- `--output \u003coutput_image_file\u003e`: Path to save the output image file.\n- `-n \u003cskip\u003e`: Number of sample skips per iteration. Adjust this to control the length of the output image.\n\n## Example\n\n```sh\nwavetable-to-image --input test.wav --output test.png -n 32\n```\n\nThis command converts `test.wav` into `test.png`, skipping 32 samples per iteration.\n\n\n### Batch Conversion\n*(temporary workaround)*\n```sh\nfind \u003cinput_directory\u003e -type f -name '*.wav' | while read f\ndo\n  wavetable-to-image $f \"\u003coutput_directory\u003e/$(basename \"${f%.wav}.png\")\" 16\ndone\n```\n\n## Roadmap\n\n- use wgpu library\n- image to audio conversion\n\n## License\n\nThis project is licensed under the GPL 3.0 License. See the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feye-wave%2Fwavetable-to-image","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feye-wave%2Fwavetable-to-image","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feye-wave%2Fwavetable-to-image/lists"}