mtp

Playing media from external device with python-vlc on linux

Playing media from external device with python-vlc on linux Question: I’m trying to play a media file. This is the example on the python-vlc repository: import platform import os import sys from PyQt5 import QtWidgets, QtGui, QtCore import vlc class Player(QtWidgets.QMainWindow): """A simple Media Player using VLC and Qt """ def __init__(self, master=None): QtWidgets.QMainWindow.__init__(self, master) …

Total answers: 1