jaseg
jaseg
Regarding the SDK issue: Yeah, sorry, that was my perfectionism^^. I removed the bool-construct since it looked fishy to me concerning corner cases ("true" as a macro instead of a...
Done. The tool is now using all allocated sections in the elf image and is inferring the physical flash memory locations from the flash mapping's base address. That one is...
It actually compiles to about 5K, try this by replacing main() in that file with an empty function and comparing both outputs. The rest of the elf file is the...
The first one is not under my control. Someone else made this. The second one is the actual pypi entry of this project. I know that the owner of the...
True, I typo'ed the one in setup.py. Originally, python-mpv was licensed under AGPLv3+. I have since changed over the license to match mpv's license, which is your choice of GPLv2+...
Yes, that is correct. When you use it along an LGPL libmpv, python-mpv is also LGPL.
ATM I can't repro this since I don't have a windows machine nearby. But, from my windows experience windows sometimes just likes to output application audio on unexpected speakers and...
The semaphore is most likely working alright. That is part of python and that is probably well tested even on osx. The problem is most likely in the [event handling](https://github.com/jaseg/python-mpv/blob/master/mpv.py#L422)....
The bouncing launcher you mentioned might be evidence that libmpv tried to create a window, but for some reason did not succeed. This sounds vaguely similar to what @Shu-ji describes...
You can use the linked pyqt example almost unmodified: ```python #!/usr/bin/env python3 import mpv import time import os import sys from PyQt5.QtWidgets import * from PyQt5.QtCore import * class Test(QMainWindow):...