Details
-
Bug
-
Resolution: Fixed
-
P3: Somewhat important
-
5.1.0
-
None
-
Ubuntu 12.04 32bit
qt5.1 sdk
Description
If I create multiple VideoOutput with same source MediaPlayer
but only one VideoOutput show video
I made application base on example
http://qt-project.org/doc/qt-5.0/qtmultimedia/qml-qtmultimedia5-videooutput.html
import QtQuick 2.0
import QtMultimedia 5.0
Rectangle {
width: 800
height: 600
color: "black"
MediaPlayer
{ id: player source: "file://video.webm" autoPlay: true }VideoOutput
{ x: 0 width: 320 height: 480 id: videoOutput0 source: player }VideoOutput
{ x: 320 width: 320 height: 480 id: videoOutput1 source: player }}
Attachments
Issue Links
- is duplicated by
-
QTBUG-46076 QML multiple VideoOutput throws error
- Closed
- relates to
-
QTBUG-80431 Expose video surfaces in QVideoWidget, QGraphicsVideoItem, QML VideoOutput
- Closed