| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Use pyproject.toml + uv_build | Aeliton G. Silva | 2026-01-13 | 1 | -545/+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 12 | tassaron | 2026-01-11 | 1 | -201/+254 |
| | | | | | 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. | ||||
| * | log name of missing/unreadable audio file | tassaron | 2022-05-10 | 1 | -1/+1 |
| | | |||||
| * | fix ffmpeg syntax error | tassaron | 2022-05-06 | 1 | -1/+1 |
| | | | | | "syntax is deprecated. Use '|' to separate the list items" from invalid arguments to aevalsrc | ||||
| * | catch PermissionError if FFmpeg doesn't work | tassaron | 2022-05-05 | 1 | -1/+1 |
| | | |||||
| * | fix misspelled ffmpeg | tassaron | 2022-04-30 | 1 | -1/+1 |
| | | |||||
| * | test if ffmpeg is really found at startup | tassaron | 2022-04-30 | 1 | -16/+15 |
| | | |||||
| * | ignore benign error from reading a closed pipe | tassaron | 2022-04-29 | 1 | -3/+7 |
| | | | | | happens when the video is done exporting sometimes. Not worth fixing | ||||
| * | cast int to str in ffmpeg command | tassaron | 2022-04-28 | 1 | -6/+3 |
| | | |||||
| * | make pip-installable as a package | tassaron | 2022-04-22 | 1 | -4/+4 |
| | | |||||
| * | createFfmpegCommand returns an empty list if it fails | tassaron | 2022-04-21 | 1 | -0/+9 |
| | | | | | previously it raised an exception | ||||
| * | fix crash if ffmpeg is not installed (tested on windows 11) | tassaron | 2022-04-21 | 1 | -0/+3 |
| | | |||||
| * | fix missing audio in output video due to change in ffmpeg command syntax ↵ | tassaron | 2022-04-13 | 1 | -7/+6 |
| | | | | | (tested with v4.4.1) | ||||
| * | file logging can be turned completely off | tassaron | 2017-08-27 | 1 | -7/+15 |
| | | | | | and various changes to log levels and messages everywhere | ||||
| * | fixed too-large Color sizes, fixed a redoing bug, rm pointless things | tassaron | 2017-08-26 | 1 | -1/+1 |
| | | | | | and now Ctrl+Alt+Shift+A gives a bunch of debug info | ||||
| * | remove % from log calls | tassaron | 2017-08-19 | 1 | -1/+1 |
| | | |||||
| * | better aevalsrc inputs for spectrum previews | tassaron | 2017-08-14 | 1 | -5/+14 |
| | | |||||
| * | rv pointless optimization & remove circular imports (again...) | tassaron | 2017-08-12 | 1 | -1/+1 |
| | | | | | the last commit does showcase an enlightening bug however | ||||
| * | using the builtin logging module | tassaron | 2017-08-10 | 1 | -7/+12 |
| | | |||||
| * | added Spectrum component with many options | tassaron | 2017-07-30 | 1 | -15/+26 |
| | | | | | tweaked Waveform, added some ffmpeg logging, made generic widget functions | ||||
| * | generic preview sound for waveform component | tassaron | 2017-07-29 | 1 | -4/+10 |
| | | | | | with secret preference to use the audio file again | ||||
| * | waveform component is working, preview is glitchy | tassaron | 2017-07-29 | 1 | -5/+25 |
| | | |||||
| * | starting work on Waveform component | tassaron | 2017-07-29 | 1 | -0/+99 |
| | | | | | split Video class out of Video component for reuse in Waveform | ||||
| * | move code into a new function for future expansion | tassaron | 2017-07-28 | 1 | -87/+97 |
| | | |||||
| * | fixed video component eating stdout | tassaron | 2017-07-27 | 1 | -3/+3 |
| | | | | | + made height/width into properties to simplify render methods | ||||
