"No QtMultimedia backends found" on MacOS with PySide 6.7.1
Unsolved
QML and Qt Quick
-
Hi,
I wonder if there was a packaging issue with 6.7.1.
Can you provide a minimal script that shows this in order to be sure the problem can be reproduced ?
-
Here is quick example for 6.7.1 which makes the warning show up.
import sys from PySide6.QtGui import QGuiApplication from PySide6.QtQml import QQmlApplicationEngine app = QGuiApplication(sys.argv) engine = QQmlApplicationEngine() engine.quit.connect(app.quit) engine.load("window.qml") sys.exit(app.exec())
window.qml
import QtQuick import QtQuick.Window import QtMultimedia Window { id: mainWindow width: 1200 height: 800 visible: true Video { anchors.fill: parent } Shortcut { sequence: "Esc" onActivated: Qt.quit() } }
-
The issue has been fixed and should be available in the next release.
-
From the looks of the bug report and related patches, the macOS wheel required update was integrated after the release of 6.7.2.
-
From the current tentative plan, it seems to be by the end of august.