-
Bug
-
Resolution: Fixed
-
P3: Somewhat important
-
6.4.0
-
-
bd1487b17 (dev), 8262be7ed (dev), f6b8ce3e4 (6.5), ae1d4d599 (6.5), b35e4878e (tqtc/lts-6.2)
While playing the video in QML multimedia player, video is losing / changing saturation of color. Attached video file and screenshots showing original color and rendered color
Item {
MediaPlayer {
id: mediaplayer
source: "FYIfullHD.mp4"
audioOutput: AudioOutput {}
videoOutput: videoOutput
}
VideoOutput{
id: videoOutput
anchors.fill: parent
}
MouseArea{
anchors.fill: parent
onPressed: mediaplayer.play();
}
}