aboutsummaryrefslogtreecommitdiff
path: root/src/command.py
AgeCommit message (Collapse)Author
2022-05-09no components on commandline adds a default visualizertassaron
2022-05-09rename visualisation to visualizationtassaron
2022-05-07fixtassaron
2022-05-07concatenate trimmed ffmpeg logs to the test reporttassaron
2022-05-07--export-project uses -i and -o if providedtassaron
Also remove unneeded instance variables `parser` and `args`, and quit if input/output can't be determined. Also, --debug and --test are now mutually exclusive
2022-05-05show program name as 'avp' when invoked as python -m avptassaron
2022-05-02add commandline option to disable preview during exporttassaron
the weird use of type() is to avoid restructuring the code at this time. I will refactor this in a different pull request
2022-04-30create test report in home folder after `--test`tassaron
2022-04-29use super().__init__ in the modern python3 styletassaron
2022-04-28change call to superclass __init__ to super()tassaron
2022-04-26tests for commandline argument parsingtassaron
2022-04-25add --debug option and rename -e so it's more explicittassaron
2022-04-22add commandline option for tests. add first teststassaron
2017-08-28ctrl-c ends commandline mode properlytassaron
2017-08-14undoable removeComponent actiontassaron
2017-07-27quit if project doesn't exist when exporting from commandlinetassaron
2017-07-23ComponentError exception wraps previewRendertassaron
probably where errors are likeliest to be found
2017-07-23components auto-connect & track widgets, less autosave spamtassaron
importing toolkit from live interpreter now works
2017-07-20ffmpeg functions moved to toolkit, component format simplifiedtassaron
component methods are auto-decorated & settings are now class variables
2017-07-15use -t on inputs so ffmpeg knows when to stop filterstassaron
+ better feedback in cmd mode
2017-07-15Video comp verifies audio streams, videoThread moved into Coretassaron
off-by-1 bug fixed in exporting, & use fewer threads for fewer CPUs
2017-07-06image options to mirror & saturate colourstassaron
and some friendly docstrings
2017-07-04moved functions into toolkit, fixed CMD appearing on Windowstassaron
2017-06-25needs more tuplestassaron
2017-06-25--export commandline optiontassaron
overrides -i and -o to use saved fields from a project file
2017-06-25project files save settings & out/in fieldstassaron
2017-06-23qt5 fixestassaron
also pep8 compliance
2017-06-23QT5 Conversion + Directory StructureDH4