Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.6.2, 6.7.0 Beta3
-
None
-
-
b59bf3fd5 (dev), 961961da7 (6.7), f9e44002c (6.6), d19eb45bf (tqtc/lts-6.5)
Description
On 'windows' multimedia backend, QML MediaPlayer unable to play a video when 'audioOutput' is not specified. Regression for Qt 6.6.2, no such problem with Qt 6.6.1 and earlier.
Sample code:
import QtQuick import QtMultimedia Window { width: 640 height: 480 visible: true VideoOutput { id: videoOut anchors.fill: parent } MediaPlayer { id: player videoOutput: videoOut //audioOutput: AudioOutput {} // uncommenting this fixes the problem source: "https://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_320x180.mp4" //autoPlay: true onMediaStatusChanged: { switch (mediaStatus) { case MediaPlayer.LoadedMedia: play() break } } } }
Attachments
Issue Links
- is duplicated by
-
QTBUG-126735 windowsmediaplugin.dll regression from 6.5.2 to 6.5.5 on VMWare Win 10
- Closed
- relates to
-
QTBUG-122608 [REG 6.6.1-6.6.2] [windows] QMediaPlayer failed to set topology on custom QVideoSink
- Closed