aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/waveform.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use pyproject.toml + uv_buildAeliton G. Silva2026-01-131-230/+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
* update to Qt 6 and Pillow 12tassaron2026-01-111-71/+99
| | | | and yeah, I accidentally ran black on the codebase. I don't want to spend more free time fixing that. All of these changes are simple renames or removals, nothing too major.
* convert to f-stringtassaron2022-05-061-20/+11
|
* convert to f-string for readabilitytassaron2022-05-061-8/+4
|
* cast int to str all over the place.tassaron2022-05-031-2/+2
| | | | This Qt settings object needs to be treated like dynamite, apparently :)
* remove extra window properties from window objectstassaron2022-04-291-3/+3
| | | | | instead of windows with properties which are windows, windows now have the UI added directly to them using an argument of `uic.loadUi` Also, DPI scaling moved to MainWindow __init__
* make pip-installable as a packagetassaron2022-04-221-4/+4
|
* file logging can be turned completely offtassaron2017-08-271-7/+13
| | | | and various changes to log levels and messages everywhere
* fixed issues with undoing relative widgetstassaron2017-08-191-1/+1
|
* better aevalsrc inputs for spectrum previewstassaron2017-08-141-10/+15
|
* using the builtin logging moduletassaron2017-08-101-4/+14
|
* relativeWidgets might as well be a listtassaron2017-08-031-19/+16
|
* relative gradients & last good frame used for preview errorstassaron2017-08-031-5/+10
|
* x/y pixel values update to match output resolutiontassaron2017-08-011-0/+3
|
* component class now tracks colorwidgetstassaron2017-08-011-35/+5
| | | | so adding new color-selection widgets is now simple
* added Spectrum component with many optionstassaron2017-07-301-15/+33
| | | | tweaked Waveform, added some ffmpeg logging, made generic widget functions
* generic preview sound for waveform componenttassaron2017-07-291-13/+25
| | | | with secret preference to use the audio file again
* waveform component is working, preview is glitchytassaron2017-07-291-42/+92
|
* starting work on Waveform componenttassaron2017-07-291-0/+139
split Video class out of Video component for reuse in Waveform