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

Using the February Buster Rasbian getting these from the syslogd Message from syslogd@raspberrypi at Apr 21 15:31:57 ... kernel:[ 8865.951650] Internal error: Oops: 2817 [#4] SMP ARM Message from syslogd@raspberrypi...

This code do not remove vocals from audio file. I did a test with the vlc application and the filter does work. I've looked at the solutions given by you...

Example code: ``` import time, vlc instance = vlc.Instance() media_list = instance.media_list_new(['./video_01.mp4', './video_02.mp4']) list_player = instance.media_list_player_new() list_player.set_media_list(media_list) # won't work with repeat list_player.set_playback_mode(vlc.PlaybackMode.repeat) list_player.play() time.sleep(5) # will work with loop...

When using a vlc.MediaListPLayer, I can play songs from a vlc.MediaList for about a minute, but eventually the player enters (and permanently stays in) the state vlc.State.Edned ``` this.api =...

Media.add.options() does not set start/stop time for URLs (e.g., YouTube) but works fine for files. For URLs, the start/stop time is ignored and the entire video is played. An example...

Hello, is their any way to do this: https://wiki.videolan.org/VLC_HowTo/Jump_to_a_certain_time/ in python? I want to do it before initiating python just like we do in command-line. Thanks for your advice.

Hello. We use python binding with vlc. We create only one instance of vlc (as in axamples). Player works well, but when we connect to this instance through http ext...

3.0.102 from pip works, the next version 3.0.4105 and later causes a segfault when iterating through the returned result from video_get_title_description. See the code at https://bin.snyman.info/mmmcr54t 3.0.102 gives me the...

I am using the examples_pyqt5vlc.py to a simple project, and i know that self.mediaplayer ( a result of libvlc_media_player_new_from_media(p_md)) has the function video_set_spu(), but i don't know how create a...

After parsing a media object using the a URL for audio, I'm still getting -1 returned consistently for media.get_duration (media.is_parsed() returns 1). After playing the track briefly then pausing, I'm...