Commit Graph
24 Commits
Author SHA1 Message Date
tyler 1cbba956b8 feat: add PNG export for spectrogram image
Add Export PNG button and keyboard shortcut (E) to export the
spectrogramImage as a PNG file. Supports:
  - Cropping to the current time/frequency selection region
  - Optional upscaling via the export scale slider (0.0x to 10.0x)
  - Exporting the full unscaled image when no selection and scale is 0

Exports to the app's working directory via raylib's ExportImage.
Export status shown as a brief toast notification.

Known issues:
  - Frequency scale doesn't adjust properly when zooming (freqView
    clamps to [0,1] range but zoom factor isn't frequency-aware)
  - Hardcoded export filenames; no filename/path picker yet
2026-05-24 21:28:30 -07:00
tyler c03d236230 feat: implement adaptive-resolution STFT with on-demand high-res computation
For long signals (>60s), initial load computes every Nth segment at
reduced resolution for a fast overview. Full resolution is computed on
demand as the user zooms into specific regions, starting at the current
viewport and computing 50 segments at a time.

Key changes:
- Add skipFactor and highResFinished fields to SpectrogramApp
- ComputeSTFTInit uses calloc to NULL-initialize segments
- ComputeSTFTIncremental skips non-aligned segments (skipFactor stride)
- ComputeSTFTHighResRange computes full-res for a range [start, end)
- GenerateSpectrogramTexture skips NULL segments for normalization
- Zoom trigger computes high-res only for the visible viewport range,
  50 segments at a time, staying within viewStart..viewEnd
- No initial high-res block — only fills on-demand as user explores
2026-05-15 09:41:41 -07:00
tyler b6942d8577 Refactor: extract platform abstraction for subprocess spawning
Move all Unix-specific syscalls (fork, execvp, waitpid, strerror, /tmp)
into a platform layer so the same spectrogram.c can target Windows
(CreateProcess) and WebAssembly (stubs). Key changes:

- src/platform.h: public API with spawn handle, error codes, path helpers
- src/platform_linux.c: fork/execvp implementation, /tmp, strerror
- src/platform_win32.c: CreateProcess implementation, temp dir lookup
- src/platform_web.c: stub implementations (no subprocess support on web)
- src/spectrogram.c: consume only platform.h; replace pid_t/fork/execvp
  with Platform_SpawnChild/WaitForChild; use Platform_GetTempDir() for
  /tmp path; replace strdup with malloc/memcpy for portability
- Build: add platform_*.c to gmake, Premake, and build_web.sh
2026-05-14 18:16:21 -07:00
tyler e42554e6fd Enable raylib 6 HiDPI/HighDPI support for proper font and UI scaling
Add FLAG_WINDOW_HIGHDPI to enable raylib's automatic framebuffer
scaling on HiDPI displays. Layout coordinates use logical screen size
only, so UI stays proportional to window size while text and graphics
render at full framebuffer resolution for crisp output on any monitor.

Also fix hardcoded pixel offsets in selection bounds rectangle to use
selScale consistently.
2026-05-14 17:01:15 -07:00
tyler 4331d010e5 Add incremental loading progress, auto-scaled amplitude, DPI-aware TTF fonts, and better file browser scaling
- Add incremental STFT processing with loading overlay and progress bar
- Add auto-scaling amplitude (max dB, max-40dB floor) for low-signal files
- Replace fixed bitmap text with TTF font scaled by window size for crisp rendering at any resolution
- Fix command-line file path resolution relative to original working directory
- Scale file browser dialog dimensions by GetUIScale() to prevent text overlap
- Disable ESC key closing the window
- Fix FFT size changes to restart STFT computation
2026-05-14 16:01:22 -07:00
tylerandQwen-Coder 9d0008ac2c Add FLAG_WINDOW_RESIZABLE, fullscreen button, and proportional UI scaling
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-04-15 15:40:17 -07:00
tylerandQwen-Coder da37cecb59 Add web build support with custom shell HTML
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-04-12 21:28:18 -07:00
tylerandQwen-Coder ecbbba36db Fix layout: proper spacing for labels and scrollbars, remove axis title text
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-04-11 22:15:25 -07:00
tylerandQwen-Coder b4c23d61a8 Add frequency zoom, scrollbars, dynamic layout that fills window
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-04-11 21:49:26 -07:00
tylerandQwen-Coder c0044c37da Simplify UI: fixed FFT 128 with synchrosqueezing always on, removed FFT slider and SQ checkbox
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-04-11 00:09:54 -07:00
tylerandQwen-Coder d11546d282 Fix synchrosqueezing: correct complex division sign and add noise threshold
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-04-10 23:44:37 -07:00
tylerandQwen-Coder 0bc30832be Implement synchrosqueezing transform for sharp spectrogram display
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-04-10 23:27:56 -07:00
tylerandQwen-Coder 5b2d8ddb33 Suppress INFO texture logs
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-04-04 21:21:18 -07:00
tylerandQwen-Coder b3eb2ea991 Fix playback auto-reset, add ffmpeg conversion, fix file browser Open button click
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-03-30 21:38:32 -07:00
tylerandQwen-Coder 5e7841fa76 Fix sidebar layout: sidebar on left (320px), spectrogram on right. SPACE toggles play/stop. dB floor triggers immediate redraw.
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-03-30 21:07:47 -07:00
tylerandQwen-Coder 87183cbe7d Add sidebar UI with sliders, buttons, checkboxes. ESC clears selections instead of exiting
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-03-30 20:05:57 -07:00
tylerandQwen-Coder bbd476c389 Remove reassignment code - back to standard spectrogram
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-03-30 19:40:20 -07:00
tylerandQwen-Coder c00c665226 Implement reassignment method for sharp time-frequency localization
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-03-27 23:25:47 -07:00
tylerandQwen-Coder bca898516b Add configurable FFT size (512-8192), 75% overlap for smoother display
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-03-27 23:16:49 -07:00
tylerandQwen-Coder 10e7a68baa Fix zoom to cursor, trigger re-render on palette/dB changes, improve controls
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-03-27 23:10:16 -07:00
tylerandQwen-Coder 377ba3616a Fix texture caching, file browser segfault, and compiler warnings
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-03-27 22:42:22 -07:00
tylerandQwen-Coder 6355db4e03 Fix snprintf truncation warnings
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-03-27 22:29:12 -07:00
tylerandQwen-Coder 99ef486c5f Add file browser, zoom/pan controls, improved UI
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-03-27 22:06:13 -07:00
tylerandQwen-Coder c5234d5799 Add spectrogram viewer with FFT bandpass filter, file browser, zoom/pan controls
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-03-27 21:56:47 -07:00