aboutsummaryrefslogtreecommitdiffstats
path: root/src/toolkit/ffmpeg.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use pyproject.toml + uv_buildAeliton G. Silva2026-01-131-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 12tassaron2026-01-111-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 filetassaron2022-05-101-1/+1
|
* fix ffmpeg syntax errortassaron2022-05-061-1/+1
| | | | "syntax is deprecated. Use '|' to separate the list items" from invalid arguments to aevalsrc
* catch PermissionError if FFmpeg doesn't worktassaron2022-05-051-1/+1
|
* fix misspelled ffmpegtassaron2022-04-301-1/+1
|
* test if ffmpeg is really found at startuptassaron2022-04-301-16/+15
|
* ignore benign error from reading a closed pipetassaron2022-04-291-3/+7
| | | | happens when the video is done exporting sometimes. Not worth fixing
* cast int to str in ffmpeg commandtassaron2022-04-281-6/+3
|
* make pip-installable as a packagetassaron2022-04-221-4/+4
|
* createFfmpegCommand returns an empty list if it failstassaron2022-04-211-0/+9
| | | | previously it raised an exception
* fix crash if ffmpeg is not installed (tested on windows 11)tassaron2022-04-211-0/+3
|
* fix missing audio in output video due to change in ffmpeg command syntax ↵tassaron2022-04-131-7/+6
| | | | (tested with v4.4.1)
* file logging can be turned completely offtassaron2017-08-271-7/+15
| | | | and various changes to log levels and messages everywhere
* fixed too-large Color sizes, fixed a redoing bug, rm pointless thingstassaron2017-08-261-1/+1
| | | | and now Ctrl+Alt+Shift+A gives a bunch of debug info
* remove % from log callstassaron2017-08-191-1/+1
|
* better aevalsrc inputs for spectrum previewstassaron2017-08-141-5/+14
|
* rv pointless optimization & remove circular imports (again...)tassaron2017-08-121-1/+1
| | | | the last commit does showcase an enlightening bug however
* using the builtin logging moduletassaron2017-08-101-7/+12
|
* added Spectrum component with many optionstassaron2017-07-301-15/+26
| | | | tweaked Waveform, added some ffmpeg logging, made generic widget functions
* generic preview sound for waveform componenttassaron2017-07-291-4/+10
| | | | with secret preference to use the audio file again
* waveform component is working, preview is glitchytassaron2017-07-291-5/+25
|
* starting work on Waveform componenttassaron2017-07-291-0/+99
| | | | split Video class out of Video component for reuse in Waveform
* move code into a new function for future expansiontassaron2017-07-281-87/+97
|
* fixed video component eating stdouttassaron2017-07-271-3/+3
| | | | + made height/width into properties to simplify render methods