How To Import Vlc Plugins In To Python Script
I'm trying to play the video using libvlc with python script, for that i got one script in the stack overflow post. the script is follows: import os import sys import vlc if
Solution 1:
According to Python bindings VLC documentation:
You can download the vlc.py module from the Git repository. It only depends on ctypes (standard module in python >= 2.5). Put the module in some place accessible by python (either next to your application, or in a directory from sys.path).
Post a Comment for "How To Import Vlc Plugins In To Python Script"