aboutsummaryrefslogtreecommitdiffstats
path: root/src/components (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* width/height fields should be relative tootassaron2017-08-011-0/+2
|
* x/y pixel values update to match output resolutiontassaron2017-08-017-8/+28
|
* component class now tracks colorwidgetstassaron2017-08-014-140/+20
| | | | so adding new color-selection widgets is now simple
* crop aphasermeter so it scales to look biggertassaron2017-07-301-1/+2
|
* more options for the Spectrum componenttassaron2017-07-302-33/+436
|
* added Spectrum component with many optionstassaron2017-07-304-21/+869
| | | | 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-294-49/+193
|
* starting work on Waveform componenttassaron2017-07-293-147/+473
| | | | split Video class out of Video component for reuse in Waveform
* some minor bugfixestassaron2017-07-272-8/+9
|
* fixed video component eating stdouttassaron2017-07-276-78/+46
| | | | + made height/width into properties to simplify render methods
* error can be locked within properties()tassaron2017-07-251-20/+15
| | | | and simplified the componenterrors again
* repeated errors don't cause repeated windowstassaron2017-07-252-3/+2
|
* preset manager uses mainwindow row for every buttontassaron2017-07-241-10/+7
| | | | and minor changes to componenterrors
* ComponentError exception wraps previewRendertassaron2017-07-231-3/+3
| | | | probably where errors are likeliest to be found
* better component error messagestassaron2017-07-233-13/+15
| | | | fatal errors cancel the export instead of crashing
* components auto-connect & track widgets, less autosave spamtassaron2017-07-236-337/+165
| | | | importing toolkit from live interpreter now works
* add component in context menu, del/ins hotkeystassaron2017-07-201-2/+2
| | | | + preset manager uses mainwindow component list
* ffmpeg functions moved to toolkit, component format simplifiedtassaron2017-07-206-42/+33
| | | | component methods are auto-decorated & settings are now class variables
* combined toolkit.py & frame.py into toolkit packagetassaron2017-07-176-13/+16
|
* new hotkey to preview the ffmpeg commandtassaron2017-07-161-2/+2
|
* apply complex filters to audio streams from componentstassaron2017-07-164-9/+155
| | | | tons of sound options could be given now, + installation using setup.py
* use -t on inputs so ffmpeg knows when to stop filterstassaron2017-07-152-12/+31
| | | | + better feedback in cmd mode
* Video comp verifies audio streams, videoThread moved into Coretassaron2017-07-151-5/+20
| | | | off-by-1 bug fixed in exporting, & use fewer threads for fewer CPUs
* components automatically drawPreview & save currentPresettassaron2017-07-136-6/+4
| | | | this makes a Component easier to program. also more comments