Hi Justed tried to get working the minimal code to play a file using python bindings of libvlc. The code import vlc inst = vlc.Instance('--fullscreen', '-vvv') media = inst.media_new('file:///home/knotito/Videos/H2G2.avi') player = inst.media_player_new() player.set_media(media) player.play() The ou...