summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2022-07-11Fix show_text level default parameterElias Müller1-1/+1
2022-06-17Fix `observe_property()` docstringNaglis Jonaitis1-5/+5
1. Fix decorator name - the decorator for property observation handlers is `@property_observer()`. 2. Fix handler's unregistration method name 3. Fix handler function signature - the signature is ``fun(property_name, new_value)`` and we can't have a bare `*` with no names after it. 4. Fix undefined variable in the example
2022-06-17Fix external subtitles exampleNaglis Jonaitis1-1/+2
Currently, running the example results in: > TypeError: MPV.play() got an unexpected keyword argument 'sub_file'
2022-06-17Fix typo in function nameLouis-Philippe Véronneau1-1/+1
2022-06-17Update branch name referencesNaglis Jonaitis1-3/+3
2022-06-17Error for known-incompatible libmpv (closes #223)James Gerity1-0/+5
2022-04-27Fix license field in setup.pyjaseg1-1/+1
2022-04-24Version 1.0.1v1.0.1jaseg1-1/+1
2022-04-24Version 1.0.1jaseg1-1/+5
Include README in PyPI package
2022-04-24Fix setup.py for PyPI uploadjaseg1-2/+2
2022-04-24Version v1.0.0jaseg1-1/+1
2022-04-24Version 1.0.0jaseg1-2/+2
2022-04-24Add cancel handling to streamsjaseg1-12/+9
2022-04-24Remove outdated OpenGL examples from READMEjaseg1-16/+4
2022-04-24Add event queue overflow handlingjaseg2-19/+54
2022-04-22Finish event infrastructure rework.jaseg1-6/+6
2022-04-22Finish rewriting event infrastructurejaseg2-19/+30
2022-04-22Continue reworking event infrastrucutre.jaseg2-33/+66
Note: We do not decode property values by default anymore.
2022-04-22Use mock.Mock to mock Xvfbwrapper on Windowsjaseg1-4/+1
2022-04-22Update event wrapper classesjaseg1-47/+41
2022-04-22Remove deprecated libmpv APIjaseg1-29/+11
2022-04-22add albumart arg to video_addjaseg1-2/+2
2022-04-22Windows test workaroundDepFA1-11/+23
Add dummy Xvfb implementation, parameterise vo and use gpu renderer for windows tests
2022-04-20Remove MpvSubApi wrapperDepFA1-3/+0
2022-04-20Remove dropped mpv-2 api methods.DepFA1-19/+3
2022-04-18Add some useful input commandsjaseg1-0/+9
2022-04-18Add keyword argument command interfacejaseg1-8/+44
2022-04-18setup.py: Update license informationjaseg1-1/+2
2022-04-18Update copyright headersjaseg2-8/+21
2022-04-17Use upstream licensejaseg4-661/+849
2022-04-17tests: Suppress video output on wayland systemsjaseg1-9/+9
2022-04-17Add missing new event typesjaseg1-0/+2
2022-04-17Add future-based async command APIjaseg2-37/+64
2022-04-17mpv.py: add default error handler for failed async commandsElias Müller1-9/+27
2022-04-17mpv.py: add support for asynchronous commandsElias Müller1-4/+48
2022-04-17Default to node_command and rename old command to string_commandjaseg1-2/+5
2022-04-17mpv.py: change mpv_detach_destroy to mpv_destroyKira1-2/+2
2022-04-17porcelain: Add fancy wait_for_event/property future handlingjaseg1-27/+39
2022-04-17Bump minimum python version to 3.7jaseg2-4/+11
2022-04-17README: Add skip silence examplejaseg1-0/+30
2022-04-17tests: Fix flaky sub_add testjaseg1-0/+1
2022-04-17tests: Add wait_for_shutdown unit testjaseg1-1/+12
2022-04-17tests: Switch to pytest, remove devnull hackjaseg1-54/+18
2022-03-26Add timeouts and error forwarding to wait_for_{property,event} conditionsjaseg2-40/+86
2022-03-26Fix segmentation fault in unit tests on waylandjaseg1-0/+3
2022-03-26use daemon = True instead of setDaemonjaseg1-1/+1
2021-10-14test_property_observer_decorator: bump sleep to 0.1sParide Legovini1-1/+1
Fixes flaky test with mpv 0.33.1 on ppc64el. Closes #178.
2021-07-28Fix handling of c_void_p args in MpvRenderParam.__init__()Marcel Moreaux1-0/+3
Handling of c_void_p args (x11_display, wl_display) was broken. Added a case to correctly handle the c_void_p constructor case. See https://github.com/jaseg/python-mpv/issues/169
2021-03-19Update PyGObject example with locale fixup workaroundjaseg1-0/+5
Closes #150
2021-01-19mpv.py: update: Use ctypes.memmove to speed uphixz001-1/+1