aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/waveform.ui (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use pyproject.toml + uv_buildAeliton G. Silva2026-01-131-383/+0
| | | | | | | | | | | | | | | | | | | | | | | | | This replaces setup.py by a modern pyproject.toml using uv_build backend. Dependencies are being also managed by uv, so to install dependencies and run the project one can execute: ``` uv sync uv run pytest # optional python -m avp ``` To build the both source and binary (wheel) distribution package run: ``` uv build ``` Uv can be installed with `pip install uv`. The directory structure has been changed to reflect best practices. - src/* -> src/avp/ - src/tests -> ../tests
* added Spectrum component with many optionstassaron2017-07-301-6/+15
| | | | tweaked Waveform, added some ffmpeg logging, made generic widget functions
* waveform component is working, preview is glitchytassaron2017-07-291-2/+93
|
* starting work on Waveform componenttassaron2017-07-291-0/+283
split Video class out of Video component for reuse in Waveform