Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.6.2
-
None
-
-
97d029980 (dev), 2fa7c4dfd (6.7)
Description
When playing a video on a FireTV stick, the sound is not audible.
When trying to select "HDMI" as audio output, "Output device not set" is printed to the console.
The reason for this is that QtAudioDeviceManager::setAudioOutput doesn't support AudioDeviceInfo.TYPE_HDMI.
Example code:
Since the ffmpeg backend is currently unable to play HLS steams (QTBUG-118168), the native backend is used:
qputenv("QT_MEDIA_BACKEND", "android");
import QtQuick import QtQuick.Controls import QtMultimedia ApplicationWindow { visible: true MediaDevices { id: devices } MediaPlayer { id: mediaplayer source: "https://hls-master.video.pareygo.de/1adbe4a13e6f65fc282ce1ceef22117c.m3u8" audioOutput: AudioOutput { Component.onCompleted: { for(var audioDevice in devices.audioOutputs) { if(devices.audioOutputs[audioDevice].description.startsWith("HDMI")) { device = devices.audioOutputs[audioDevice] } } }} videoOutput: videoOutput } VideoOutput { id: videoOutput anchors.fill: parent } Component.onCompleted: mediaplayer.play() }
Attachments
For Gerrit Dashboard: QTBUG-122887 | ||||||
---|---|---|---|---|---|---|
# | Subject | Branch | Project | Status | CR | V |
544257,3 | Android: MediaPlayer: Allow AudioOutput via HDMI | dev | qt/qtmultimedia | Status: MERGED | +2 | 0 |
545338,1 | Android: MediaPlayer: Allow AudioOutput via HDMI | 6.6 | qt/qtmultimedia | Status: ABANDONED | 0 | 0 |
545340,2 | Android: MediaPlayer: Allow AudioOutput via HDMI | 6.7 | qt/qtmultimedia | Status: MERGED | +2 | 0 |