PDA

View Full Version : Unable to use <audio> and <video> tag of html file



arcade
16th June 2017, 13:55
Hey all i have a very simple html file which i want to be displayed in webview .

the html file is as follows

<!doctype html>
<head>
<title>Live audio </title>
</head>

<body>
<audio controls preload="none">
<source src="" type="audio/mpeg">
Your browser does not support the audio element.
</audio>

</body>
</html>

the html file works fine when i load it in chrome or firefox . But when i load it in webview in my application it doesn't play it . Any idea why ??

this is how i am loading the file :


import QtQuick 2.0
import QtMultimedia 5.5
import QtWebView 1.1


Item{

WebView {
id: webView
anchors.fill: parent
url: "qrc:/documents/live_audio.html"
}

}