aboutsummaryrefslogtreecommitdiffstats
path: root/src/encoder-options.json (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-05-02add useful comment about why this reference existstassaron1-0/+2
2022-05-02log QThread IDstassaron2-0/+3
2022-04-30tested working instructions for Ubuntu 22.04tassaron1-6/+6
using the default environment, Gnome on Wayland, in a clean virtual machine
2022-04-30create test report in home folder after `--test`tassaron1-1/+34
2022-04-30fix progress bar percentage not increasingtassaron1-1/+1
numpy.floor now returns a float if given a float
2022-04-30fix 'QThread killed while running' at program exittassaron2-23/+19
2022-04-30fix misspelled ffmpegtassaron1-1/+1
2022-04-30test if ffmpeg is really found at startuptassaron2-32/+39
2022-04-30raise log level of library logfiletassaron1-3/+6
2022-04-29license may be affected by packagingtassaron1-1/+3
https://github.com/djfun/audio-visualizer-python/issues/28#issuecomment-314791421
2022-04-29log ffmpeg bintassaron1-7/+12
2022-04-29switch Pillow-SIMD for Pillowtassaron2-14/+4
It is easier for people to install with pip. We can always go back to SIMD in the future when we have a better install script. Packaged versions can still use Pillow-SIMD
2022-04-29ignore benign error from reading a closed pipetassaron1-3/+7
happens when the video is done exporting sometimes. Not worth fixing
2022-04-29remove extra window properties from window objectstassaron9-243/+242
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__
2022-04-29rename videoCreated method to stopVideoThreadtassaron1-2/+2
2022-04-29use super().__init__ in the modern python3 styletassaron4-6/+6
2022-04-29better log messages when setting window titletassaron1-1/+2
log before and after method call instead of just after
2022-04-29delay opening logfile until first call to loggertassaron1-2/+2
fix deleting an open file if logger changes after parsing commandline args on Windows deleting an open file raises an exception
2022-04-29document keyboard shortcuts. fix "show ffmpeg command"tassaron2-3/+29
2022-04-28remove punctuation from project names at commandlinetassaron1-4/+9
stop someone shooting themself in the foot by doing `avp /?` on Windows
2022-04-28cast int to str in ffmpeg commandtassaron1-6/+3
2022-04-28change call to superclass __init__ to super()tassaron1-1/+1
2022-04-27add logging to Color component. remove unused importstassaron1-5/+6
2022-04-27fix segmentation fault when rendering Color componenttassaron1-1/+2
Pillow's ImageQt is a subclass of QImage
2022-04-26tests for commandline argument parsingtassaron5-12/+54