Olivier Aubert
Olivier Aubert
Missing screenshot...
Indeed, this should work. I have to get access to some Mac to investigate this, will report back asap (which may be in some weeks - "Summertime, and the living...
The backslash prefix comes from the epydoc software which is/was used to generate the documentation. Migrating to a better (and still maintained) software like sphinx-apidoc/pdoc/... has been on the TODO...
unions are indeed not handled, just "blackboxed" to make the rest of the generation work properly, as indicated in https://github.com/oaubert/python-vlc/blob/master/generator/generate.py#L1045 To properly fix this, generate.py should be updated to handle...
Thanks for the patch. In fact, the situation is a bit different. The signature for `libvlc_media_new_location` changed in the dev version: it was previously (in 2.2 and 3.0) `libvlc_media_new_location(libvlc_instance_t *p_instance,...
I will have a look at this when the appropriate version of libvlc lands into Debian testing. For the moment, it is still 3.0.12, and 3.0.16 is in unstable.
There is no proxy-related option in libvlc per se, but it should use the http_proxy environment variable if it is set. So you can `import os ; os.environ['http_proxy'] = 'http://whatever/'`...
For my last comment (about enum values) - my remembering of the C spec is correct, running the following code ``` #include #include #include int main(int argc, char **argv) {...
Great idea, it will be present at some time in the future.
Same as #87 - there is work to be done on the windows build scripts.