acoustsee

USAGE

Please note that the current best performer can be run without installation directly from a internet browser, the latest stable version is hosted at:

https://mamware.github.io/acoustsee/present

Browser compability list:

Browser Minimum Version for Full Support Notes
Chrome for Android Chrome 47 (December 2015) Full support for getUserMedia, AudioContext, and createStereoPanner.
Safari on iOS iOS 14.5 (Safari 14.1, April 2021) Supports unprefixed AudioContext and createStereoPanner. No vibration support.
Firefox for Android Firefox 50 (November 2016) Full support for all APIs, though SpeechSynthesis may be inconsistent.
Samsung Internet Samsung Internet 5.0 (2017) Based on Chromium, full support for all APIs.
Opera Mobile Opera 36 (2016) Based on Chromium, full support for all APIs.
Edge for Android Edge 79 (January 2020) Based on Chromium, full support for all APIs.

Privacy Note: All of the video processing is done at your device, not a single frame is sent to anyone or anywhere than that the ones that takes places at your own device processing logic.

Project structure for TBD version

acoustsee/
├── src/                       # Contains the Python PoC code for still image processing and audio generation.
├── web/                       # Contains HTML, CSS, and JavaScript files for the web interface folder for different approaches at the core logic
│   ├── fft/                   # Experimenting with Fourier, fast. 
│   │    ├── index.html
│   │    ├── main.js
│   │    ├── styles.css
│   ├── hrft/                  # Experimenting the Head Related Transfer Function
│   │    ├── index.html
│   │    ├── main.js
│   │    ├── styles.css
│   ├── tonnetz/               # Experimenting with Euler, Tonnetz.
│   │    ├── index.html
│   │    ├── main.js
│   │    ├── styles.css
│   ├── index.html             # The current chosen version as a better performer (Tonnetz, 5/18/2025).
│   ├── main.js
│   ├── styles.css
├── examples/                  # Still image and output container for the Python PoC
├── tests/                     # Should contain unit tests (currently missing)
├── docs/                      # Contains technical documentation (working)
│    ├── DIAGRAMS.ms           # Wireframes the logic at main.js
└── README.md                  # This file, providing an overview of the project

To test our first commit wich is a Python script, either out of curiosit or educational purposes, follow the instrucctions below

Our first iteration, a simple proof-of-concept: process a static image file and output basic left/right panned audio file.

Setup

Clone the Repo:

   git clone https://github.com/MAMware/acoustsee.git
   cd acoustsee

Set Up Virtual Environment:

  python3 -m venv acoustsee_env
  source acoustsee_env/bin/activate

Install Dependencies: bash pip install opencv-python-headless numpy scipy pyo Run the MVP: For local machines bash python src/main.py For headless environments (e.g., Codespaces):

  python src/main_codespaces.py

Try it with examples/wall_left.jpg to hear a basic left/right audio split!

Troubleshooting the python version installation