I have a program written by PyQt that plays video by binding libvlc. # -*- coding: utf-8 -*- import sys import os import vlc from PySide2.QtGui import * from PySide2.QtCore import * from PySide2.QtWidgets import * class vlc_demo(QWidget): def __init__(self): super(vlc_demo, self).__init__() self.__u...