You are not logged in.
Hi. I am just asking for Can anyone confirm and vote this?
https://bugreports.qt.io/browse/QTBUG-46314
EDIT: I am asking one more:) Are any of you able to play local multimedia files via "WebEngineView"? Eg.
### test.qml ###
import QtQuick 2.4
import QtQuick.Controls 1.3
import QtWebEngine 1.0
ApplicationWindow {
width: 500
height: 500
visible: true
WebEngineView {
id: webview
url: "test.html"
anchors.fill: parent
}
}### test.html ###
<!DOCTYPE html>
<html>
<head>
<title>test</title>
</head>
<body>
<audio id="player" controls autoplay="true" src="test.mp3">
</body>
</html>[me@localhost ~]$ qmlscene-qt5 test.qmlThanks a lot.
Last edited by unixman (2015-05-27 13:37:29)
Offline
Well. 'ogg' audios and 'webm' videos are playable but 'mp3' and 'mp4' formats not playable.
It seems like mp3 and mp4 formats banned by someone.
EDIT: exact answer: http://lists.qt-project.org/pipermail/q … 00061.html
Last edited by unixman (2015-05-29 09:45:45)
Offline