I\'m trying to reproduce a video with sound in python Tkinter through VLC, but cannot run the file since I get an error when running the line import vlc.
I have python 3
I ended up using subprocess to run VLC through the CLI.
import subprocess comand = 'vlc --play-and-exit --no-video-deco --no-embedded-video -f --one-instance --no-playlist-enqueue assetsCNDH\\directorio.mp4' subprocess.run(comand, shell=True)