Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-07-15 | tests: Fix test_instance_method_property_observer (#108) | jaseg | 1 | -8/+8 | |
The loop property was a poor choice here since setting it messes with libmpv's event loop, leading to property change observer events being dropped. | |||||
2020-07-15 | tests: Fix test_property_observer_decorator (#108) | jaseg | 1 | -10/+10 | |
2020-07-15 | tests: Fix test_write for segaults in libmpv (#108) | jaseg | 1 | -0/+4 | |
2020-07-15 | added "python_requires" | YoSTEALTH | 1 | -0/+1 | |
people are installing this package in python2 and running into issues of syntax error which is only used in pyhon3.5, thus the need of `python_requires` | |||||
2020-07-15 | remove superfluous whitespaces | Louis-Philippe Véronneau | 2 | -3/+3 | |
2020-07-12 | Bump version to v0.4.7v0.4.7 | jaseg | 1 | -1/+1 | |
2020-07-12 | README: Add detail on subtitle handling | jaseg | 1 | -10/+21 | |
2020-07-12 | Fix handling of dashed options in loadfile. | jaseg | 3 | -8/+44 | |
Add tests based on --sub-file. Also add a test for sub_add here. | |||||
2020-07-11 | update README with inserting subtitles | Peter Kuchar | 1 | -0/+19 | |
2020-04-05 | Add release script | jaseg | 1 | -0/+17 | |
2020-04-05 | Version v0.4.6v0.4.6 | jaseg | 1 | -1/+1 | |
2020-04-05 | Make tests run headless using xvfbwrapper | jaseg | 2 | -1/+14 | |
2020-04-01 | Add some high-level API information to README | jaseg | 1 | -0/+3 | |
2020-01-24 | README: Add info on GUI modes | jaseg | 1 | -0/+21 | |
Closes #102 | |||||
2020-01-03 | README: add render context gtk example | jaseg | 1 | -4/+11 | |
2020-01-03 | Initial libmpv/render.h mapping | jaseg | 1 | -11/+195 | |
For an example using this with GTK see: https://gist.github.com/jaseg/657e8ecca3267c0d82ec85d40f423caa | |||||
2020-01-03 | Add GTK/OpenGL example (#100) | Elias | 1 | -2/+7 | |
* Add GTK/OpenGL example | |||||
2019-12-04 | Version 0.4.5v0.4.5 | jaseg | 1 | -1/+1 | |
2019-12-04 | Windows: Use cytpes.load_library to look for DLL | jaseg | 2 | -9/+17 | |
2019-12-03 | Version 0.4.4v0.4.4 | jaseg | 1 | -1/+1 | |
2019-12-03 | Allow mpv-1.dll to be placed in python script directory (#96) | ripdog | 1 | -1/+4 | |
Windows: Look for DLL in script directory Loading DLLs through ctypes on Windows is a mess. ctypes looks in PATH, which is different from the Windows built-in DLL loading system. By default ctypes looks next to python.exe, but you might not want to install python script dependencies next to the system-wide python interpreter. This commit adds a fallback looking for mpv-1.dll in the same directory the mpv.py script is placed in to allow people to use python-mpv with a minimum in configuration. You can still control loading behavior through PATH. For details on this, consult the following stackoverflow answer: https://stackoverflow.com/a/23805306 | |||||
2019-12-02 | Version 0.4.2v0.4.2 | jaseg | 1 | -1/+1 | |
2019-12-02 | tests: Silence libmpv during unittests | jaseg | 1 | -1/+54 | |
2019-12-02 | Fix Python 3.5 compatibility | jaseg | 2 | -2/+2 | |
2019-12-01 | Version 0.4.1v0.4.1 | jaseg | 1 | -1/+1 | |
2019-12-01 | Add stream protocol handling | jaseg | 3 | -6/+365 | |
This allows you to directly feed bytes into mpv without going through a file, FIFO etc. first. The new API is: @player.register_stream_protocol(name) @player.python_stream(name, size) @player.python_stream_catchall See their docstrings for their usage. | |||||
2019-11-26 | Bump version to v0.4.0v0.4.0 | jaseg | 1 | -1/+1 | |
This change breaks the key binding API. Old code has to be modified to add the new "char" parameter: old: player = mpv.MPV() @player.key_binding('Q') def binding(state, name): print('blep') new: player = mpv.MPV() @player.key_binding('Q') def binding(state, name, char): # <<< here print('blep') | |||||
2019-11-26 | key bindings: Introduce key char parameter | jaseg | 2 | -13/+13 | |
Adapt key binding script message handling to be compatible with the new key char parameter introduced upstream in https://github.com/mpv-player/mpv/commit/21f2468d67e11eff7ede0d85fa6f4ab5c4f7de84 This change is backwards-compatible. With older mpv versions this parameter will be None. | |||||
2019-11-26 | README - vo "opengl" doesn't exist anymore | Rijnder Wever | 1 | -1/+1 | |
2019-11-10 | Version 0.3.10v0.3.10 | jaseg | 1 | -1/+1 | |
2019-11-10 | Use stride//4 rather than the returned image w | dfaker | 1 | -1/+1 | |
As per discussion on the mpv issue https://github.com/mpv-player/mpv/issues/7076 to handle the screenshot-raw when vf cropping filters are in use. | |||||
2019-02-08 | README: Add cosven's QT/OpenGL example | jaseg | 1 | -0/+7 | |
2019-02-07 | fix: getProcAddr function should return a function or 0 | cosven | 1 | -1/+1 | |
2018-12-02 | Merge pull request #78 from trin94/patch-1 | jaseg | 1 | -0/+38 | |
Readme: Add PyGtk embedding example | |||||
2018-12-01 | Readme: Add PyGtk embedding example | Elias | 1 | -0/+38 | |
2018-07-25 | Version 0.3.9v0.3.9 | jaseg | 1 | -1/+1 | |
2018-07-25 | command: fix default show-text duration param value | jaseg | 1 | -1/+1 | |
The mpv manpage seems to be wrong here. A look at mpv's command.c show that -1 works fine here. | |||||
2017-12-25 | README: Add PyQT embedding example | jaseg | 1 | -2/+42 | |
2017-12-25 | README: Add "supported platforms" section | jaseg | 1 | -0/+13 | |
2017-12-25 | Refactor node_cast_value to use large if/elif instead of dict lookup | jaseg | 1 | -12/+25 | |
2017-12-24 | Bump version to v0.3.8v0.3.8 | jaseg | 1 | -1/+1 | |
2017-12-24 | Fix MpvNode logic to use pröper unions | jaseg | 2 | -36/+53 | |
...instead of lots manual ctypes pointer casting | |||||
2017-12-05 | v0.3.7: Remove windows classifiers since nobody tests this on windows | jaseg | 1 | -3/+1 | |
2017-09-19 | Bump version to 0.3.6v0.3.6 | jaseg | 1 | -1/+1 | |
2017-09-18 | Fixed TypeError: _handle_key_binding_message() signature incompatibility ↵ | Vilius Grigaliūnas | 1 | -1/+1 | |
with mpv < v0.15.0 key-binding message has key name parameter only since mpv version 0.15.0 (as stated in manual), therefore trying to bind keys with earlier versions results in TypeError: _handle_key_binding_message() missing 1 required positional argument: 'key_name'. This change makes this argument optional and default to None. | |||||
2017-09-14 | Version 0.3.5v0.3.5 | jaseg | 1 | -1/+1 | |
2017-09-14 | Nicer API names for add/multiply/cycle property | jaseg | 1 | -7/+7 | |
add: _add_property -> property_add multiply: _multiply_property -> property_multiply cycle: _cycle_property -> cycle | |||||
2017-09-14 | Wrap all docstrings to 120 char line width | jaseg | 1 | -150/+91 | |
This is to stay consistent with everything else. | |||||
2017-09-13 | Reformat doctrings to follow PEP 257 and use reStructuredText | Raphael McSinyx | 1 | -192/+228 | |
2017-09-13 | Fix add, cycle and multiply command. | Raphael McSinyx | 1 | -4/+14 | |