https://github.com/technicjelle/soundimagery
C (or maybe Zig, actually!) program to convert Sound to Images and back again
https://github.com/technicjelle/soundimagery
Last synced: 2 months ago
JSON representation
C (or maybe Zig, actually!) program to convert Sound to Images and back again
- Host: GitHub
- URL: https://github.com/technicjelle/soundimagery
- Owner: TechnicJelle
- Created: 2022-04-23T14:14:56.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-01T01:43:59.000Z (about 3 years ago)
- Last Synced: 2025-01-26T11:09:46.526Z (4 months ago)
- Language: C
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SoundImagery
C program to convert Sound to Images and back again## Running
After [setting up the dependencies](#building-instructions), you should be able to just execute `make run` to run the program.## Building instructions
This project uses the [Bass Library](https://www.un4seen.com/bass.html), so please download the correct version for your operating system.
### For Windows:
Download the **Win32** version of Bass from the linked webpage above,\
extract these files to the root of this repository:
- `bassXX.zip/x64/bass.dll`
- `bassXX.zip/c/bass.h`
- `bassXX.zip/c/x64/bass.lib`### For Linux:
Download the **Linux** version of Bass from the linked webpage above,\
extract these files to the root of this repository:
- `bassXX-linux.zip/bass.h`
- `bassXX-linux.zip/x64/libbass.so`### For Android (in [Termux](https://termux.com/))
Run this command in the Termux shell:
```
getprop ro.product.cpu.abi
```
This returns your device's CPU architecture, which you need for the next step:Download the **Android** version of Bass from the linked webpage above,\
then extract these files to the root of this repository:
- `bassXX-android.zip/c/bass.h`
- `bassXX-android.zip/libs//libbass.so`