python-vlc icon indicating copy to clipboard operation
python-vlc copied to clipboard

Python vlc bindings

Results 95 python-vlc issues
Sort by recently updated
recently updated
newest added

Thanks for great app. When call libvlc_log_get_context invoke exception. I think, in below line, `ListPOINTER` must be replaced with `ctypes.POINTER`. https://github.com/oaubert/python-vlc/blob/master/generated/vlc.py#L4363 - traceback ``` Traceback (most recent call last): File...

help wanted

Please write example of stream to memory.

help wanted

I'm trying to record and get song information (title and artist) from web radios using python-vlc lib. The recording functionality is working well but the media parse to get the...

I have noticed different behavior when using the video_update_viewpoint() function on a mediaplayer spawned from a specifically created instance vs a directly spawned media player. for example: `import vlc` `p...

This MR adds a way to link libVLC log system to a python logging.Logger object. A new `set_logger` method is added to the Instance class to link a logging.Logger to...

This error is really annoying. I'm using python 3.10 with the python-vlc latest version. Vlc player is also the latest version. when ever i get this error windows 10 mouse...

The most important change is the rewrite of `Parser` using Tree-sitter. The goal is to make the parsing of libvlc's header files more robust, maintainable and powerful than the current...

- Look for the libtk in yet another place in Python 3.11+ on macOS. - Fixed spurious message "not in fullscreen state" on macOS. - Ignore OnConfig events while toggling...

The `libvlc_log_get_context` is improperly wrapped in the latest bindings version: parameters marked as [OUT] are not properly parsed as such, as indicated by the `generate.py -dc ` output, as well...

The generator currently fails when building against VLC 4.0-dev headers due to the unmapped type `libvlc_time_t*` used in `libvlc_media_player_get_abloop`. This PR adds the necessary type mapping to `ctypes.POINTER(ctypes.c_longlong)`. Closes #298