More specifically, I have a PyQt5 application for macOS (https://soosl.net/software.html); should run on anything from Mavericks through Mojave. Built with Python 3.7, PyQt5.11, and VLC 2.2.4. (I 'think' I've seen this with VLC 3 as well, but the current released version uses 2.2.4)
One user who is experiencing problems is running High Sierra on a Mac Air. I can't yet see a pattern to which Macs are having problems; 'maybe' newer Macs in general, but I can't get my hands on any of these machines to experiment with.
This is the code I use when initializing the instance:
Code: Select all
import vlc
args = ["--verbose=-1",
"--ignore-config",
"--play-and-pause",
"--no-video-title-show",
"--no-plugins-cache"
]
self.Instance = vlc.Instance(*args)
Code: Select all
widget = QLabel()
win_id = widget.winId()
_id = int(win_id)
player.set_nsobject(_id)