Details
-
Suggestion
-
Resolution: Fixed
-
P2: Important
-
6.5.0
-
-
2b2c3eec3 (dev), 2bc2a7665 (dev), 0f5709d1c (6.8), 235ba5f27 (dev), 4d201d0ce (6.8)
-
Multimedia wk 15-16, Multimedia wk 17-18, Multimedia wk 19-20, Multimedia wk 23-24
Description
Playing HDR videos using QML multimedia player shows video in very dim light though the actual video is bright. Attached the screenshots showing difference of lighting in video playback between Qt Media Player and default IOS player. And also attached the HDR video file.
If fixing this bug takes more time, then in the meantime please provide us a flag in the metaData property of MediaPlayer QML Type to indicate that the current media being played is HDR or DolbyVision video. Using this flag we can keep our app users informed about low lighting for HDR videos.
Window { width: 640 height: 480 visible: true MediaPlayer { id: player audioOutput: AudioOutput{} videoOutput: videoOutput source: "sample.MOV" } VideoOutput{ id:videoOutput anchors.fill:parent } MouseArea{ anchors.fill: parent onPressed: player.play(); } }